Skip to content

lint fix

lint fix #57

Workflow file for this run

name: Run tests for jaclang
on:
pull_request:
paths:
- "jac/**"
push:
branches:
- main
paths:
- "jac/**"
jobs:
test-jaclang:
runs-on: ubuntu-latest
defaults:
run:
working-directory: jac
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pytest
- name: Run tests
run: pytest -x