Skip to content

Only build container once in ci #1075

Only build container once in ci

Only build container once in ci #1075

Workflow file for this run

name: CI

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: should-run
on:
push:
pull_request_target:
types: [labeled]
jobs:
should-run:
if: ${{ github.event.action != 'labeled' || (github.event.action == 'labeled' && github.event.label.name == 'run tests') }}
runs-on: ubuntu-latest
build_devcontainer:
needs: [should-run]
uses: ./.github/workflows/build_devcontainer.yml
secrets: inherit
test:
needs: [build_devcontainer]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Run tests in container
uses: devcontainers/[email protected]
with:
imageName: dodona/dodona-tested
imageTag: dev
runCmd: poetry run pytest -n auto --cov=tested --cov-report=xml tests/
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./result/coverage.xml
lint:
needs: [build_devcontainer]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Run isort
uses: devcontainers/[email protected]
with:
imageName: dodona/dodona-tested
imageTag: dev
runCmd: poetry run isort --check-only --diff ./tested ./tests
- name: Run black
uses: devcontainers/[email protected]
with:
imageName: dodona/dodona-tested
imageTag: dev
runCmd: poetry run black --check ./tested ./tests
types:
needs: [build_devcontainer]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Run pyright
uses: devcontainers/[email protected]
with:
imageName: dodona/dodona-tested
imageTag: dev
runCmd: pyright ./tested ./tests