Skip to content

Commit

Permalink
Merge pull request #55 from gabrielmscampos/fix/github-ci-python-version
Browse files Browse the repository at this point in the history
Fix GitHub Actions ubuntu and python versions
  • Loading branch information
gabrielmscampos authored Jun 21, 2024
2 parents f2c02bb + 78da797 commit a4c5962
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test_backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ on: [push]
jobs:
build:

runs-on: ubuntu-latest
# As long as we need python 3.6 we need to pin ubuntu 20.04
# https://github.com/actions/setup-python/issues/544
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.6"]

steps:
- uses: actions/checkout@v3
Expand All @@ -27,4 +29,4 @@ jobs:
CLIENT_ID: ${{ secrets.CLIENT_ID }}
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }}
run: |
pytest tests
pytest tests

0 comments on commit a4c5962

Please sign in to comment.