Skip to content

Run dotnet tests.

Run dotnet tests. #1

Workflow file for this run

name: Push actions
on:
push:
branches:
- master
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 31 in .github/workflows/push.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/push.yml

Invalid workflow file

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