Skip to content

Commit

Permalink
Remove unnecessary setup in GitHub Actions workflow
Browse files Browse the repository at this point in the history
This seems to be left over from when we still used to run tests directly in GHA runners.
  • Loading branch information
tillprochaska committed Feb 1, 2024
1 parent e1884f3 commit e89bff7
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,7 @@ jobs:
with:
python-version: '3.x'
- name: Install dependencies
env:
DEBIAN_FRONTEND: noninteractive
BOTO_CONFIG: /dev/null
AWS_ACCESS_KEY_ID: banana
AWS_SECRET_ACCESS_KEY: bananacake
run: |
sudo rm -f /etc/boto.cfg
sudo apt-get -qq update
sudo apt-get install -y libicu-dev
make dev
run: make dev
- name: Run the code format check
run: make format-check
- name: Run the linter
Expand Down

0 comments on commit e89bff7

Please sign in to comment.