Skip to content

ci: make integration test unique #2

ci: make integration test unique

ci: make integration test unique #2

Workflow file for this run

# This workflow will install Python dependencies, run pytests and run notebooks

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

View workflow run for this annotation

GitHub Actions / .github/workflows/build_prod.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: build-prod
# then it will in python 3.9 (ubuntu-latest) create a badge with the coverage
# and add it to the PR. This badge will be updated if the PR is updated.
name: Integration test and build prod
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
integration-test:
permissions: write-all
concurrency:
group: "${{ github.workflow }} @ ${{ github.ref }}"
cancel-in-progress: true
runs-on: ubuntu-latest
steps:
- name: Checkout (GitHub)
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: MartinBernstorff
password: ${{ secrets.GITHUB_TOKEN }}
- name: Run integration test
shell: bash
run:
chmod +x ./tests/integration_test.sh
./tests/integration_test.sh
build-prod:
permissions: write-all
concurrency:
group: "${{ github.workflow }} @ ${{ github.ref }}"
cancel-in-progress: true