Skip to content

Run dotnet tests.

Run dotnet tests. #34

Workflow file for this run

name: Pull actions
on:
pull_request:
jobs:
python-tests:
runs-on: "ubuntu-latest"
name: Run Python tests
env:
WORKING_DIRECTORY: "python"
steps:
- uses: actions/checkout@v4
- name: Set up Python 3
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
working-directory: ${{ env.WORKING_DIRECTORY }}
run: |
python -m pip install --upgrade pip
python -m pip install --editable ./src/unece_excel_parser[dev]
- name: Test with pytest
working-directory: ${{ env.WORKING_DIRECTORY }}
run: |
pytest
dotnet-tests:
uses: ./dotnet-tests.yml

Check failure on line 28 in .github/workflows/pull.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pull.yml

Invalid workflow file

invalid value workflow reference: no version specified
with:
working-directory: "dotnet/UneceGenerator"
dotnet-version: "8.0.100"