Skip to content

Unit tests [Dafydd] #10

Unit tests [Dafydd]

Unit tests [Dafydd] #10

Workflow file for this run

name: unit_tests
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
setup:
strategy:
matrix:
python-version: ["3.12",]
uses: ./.github/workflows/environment_setup.yml

Check failure on line 16 in .github/workflows/unit_tests.yaml

View workflow run for this annotation

GitHub Actions / unit_tests

Invalid workflow file

The workflow is not valid. In .github/workflows/unit_tests.yaml (Line: 16, Col: 11): Error from called workflow CWorthy-ocean/C-Star/.github/workflows/environment_setup.yml@ba1e22c9317bc567c2298f86233476506e429875 (Line: 7, Col: 9): Required property is missing: type In .github/workflows/unit_tests.yaml (Line: 16, Col: 11): Error from called workflow CWorthy-ocean/C-Star/.github/workflows/environment_setup.yml@ba1e22c9317bc567c2298f86233476506e429875 (Line: 11, Col: 14): Unexpected value 'inherit'
with:
python-version: ${{ matrix.python-version }}
test:
name: ${{ matrix.python-version }}-build
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12",]
steps:
- uses: actions/checkout@v4
- name: Running Tests
shell: micromamba-shell {0}
run: |
python -V
coverage run --rcfile=coverage.toml -m pytest -s --verbose cstar/tests/unit_tests/*
- name: Get coverage report
shell: micromamba-shell {0}
run: |
coverage report -m ; coverage xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml