Skip to content

Commit

Permalink
Revert "Remove unnecessary setup in GitHub Actions workflow"
Browse files Browse the repository at this point in the history
This reverts commit e89bff7.
  • Loading branch information
tillprochaska committed Feb 1, 2024
1 parent e89bff7 commit 081b018
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,16 @@ jobs:
with:
python-version: '3.x'
- name: Install dependencies
run: make dev
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
- name: Run the code format check
run: make format-check
- name: Run the linter
Expand Down

0 comments on commit 081b018

Please sign in to comment.