Skip to content

Create GHA extract shell scripts action #34

Create GHA extract shell scripts action

Create GHA extract shell scripts action #34

Workflow file for this run

---
name: Unit Tests
on:
pull_request:
paths:
- "**/*.py"
- ".github/workflows/unit-tests.yaml"
jobs:
test:
name: Test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with unittest
run: |
python test/test_reference.py