Skip to content

Fix workflow definition #143

Fix workflow definition

Fix workflow definition #143

Workflow file for this run

# Workflow for running tests
#
# Author: Tomas Dacik (idacik@fit.vut.cz), 2022
name: Run tests
on: [push, pull_request]
jobs:
build:
uses: "build.yml"

Check failure on line 11 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tests.yml

Invalid workflow file

invalid value workflow reference: no version specified
unit-tests:
needs: build
runs-on: ubuntu-latest
steps:
- name: Run unit tests
run: opam exec -- dune runtest
regression-tests:
needs: build
runs-on: ubuntu-latest
steps:
- name: Run regression tests
run: python3 scripts/run_tests.py