Skip to content

Skip tests

Skip tests #74

Workflow file for this run

name: Run tests
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-tests
cancel-in-progress: true
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v4
- name: Install rye
uses: eifinger/setup-rye@v4
with:
enable-cache: true
- name: Sync dependencies
run: rye sync
- name: Use ANTLR
run: |
source .venv/bin/activate
antlr4 -Dlanguage=Python3 project/task11/parser/Graph.g4 -visitor
- name: Run tests
run: python scripts/run_tests.py