Skip to content

Commit

Permalink
ci(palletjack): fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Oct 4, 2024
1 parent 61fdaa7 commit 1224047
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/palletjack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,23 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: 3.11
cache-dependency-path: |
src/roadkill/requirements.txt
src/roadkill/requirements.dev.txt
cache: pip

- name: ⬇️ Set up code
uses: actions/checkout@v4

- name: Install Dependencies
- name: 📥 Download extra dependencies
run: |
sudo apt install -y libkrb5-dev
pip install -r src/roadkill/requirements.txt
pip install -r src/roadkill/requirements.dev.txt
sudo apt-get update
sudo apt-get install -y libkrb5-dev
- name: Test with pytest
- name: 🏗 Install module
run: pip install .[tests]

- name: 🧪 Run tests
run: pytest


deploy-dev:
name: Deploy Staging to GCF
runs-on: ubuntu-latest
Expand Down

0 comments on commit 1224047

Please sign in to comment.