Skip to content

Minor fixes 2022 02 04 #523

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 13 commits into from
Prev Previous commit
Next Next commit
Update ci.yaml
  • Loading branch information
fcollingwood authored Feb 2, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit df8d86b87be4cfcfdc8dee0b71bab3ca27b4d55c
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ on: [push, pull_request]

jobs:
setup-venv:
runs-on: ubuntu-latest
runs-on: debian-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9"]
@@ -24,7 +24,7 @@ jobs:
if: steps.setup-venv.outputs.cache-hit != 'true'

backend-build:
runs-on: ubuntu-latest
runs-on: debian-latest
needs: setup-venv
strategy:
matrix:
@@ -48,7 +48,7 @@ jobs:
path: backend-coverage.xml

frontend-build:
runs-on: ubuntu-latest
runs-on: debian-latest
defaults:
run:
working-directory: frontend
@@ -68,7 +68,7 @@ jobs:
path: frontend-coverage.json

codecov:
runs-on: ubuntu-latest
runs-on: debian-latest
needs: [backend-build, frontend-build]
steps:
- uses: actions/checkout@v2