Skip to content

new docker workflow #10

new docker workflow

new docker workflow #10

Workflow file for this run

name: docker CI
on: [push, pull_request]
jobs:
container-test-job:
runs-on: ubuntu-latest
container: dolfinx/dolfinx:stable
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install local package and dependencies
run: |
pip install .[test]
- name: Run tests
run: |
python3 -m pytest test/ --cov festim --cov-report xml --cov-report term
- name: Upload to codecov
- uses: codecov/codecov-action@v3
with:

Check failure on line 22 in .github/workflows/docker_ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/docker_ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 22
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml