Skip to content

Run the test suite as a GitHub Action #80

Run the test suite as a GitHub Action

Run the test suite as a GitHub Action #80

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
PreCommit:
name: pre-commit
runs-on: ubuntu-latest
steps:
- name: 💾 Check out repository
uses: actions/checkout@v3
- name: 🪝 Cache pre-commit hooks
uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: "pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml')
}}"
- name: ✨ Install pre-commit
shell: bash
run: python3 -m pip install pre-commit
- name: 🔥 Test
run: pre-commit run --show-diff-on-failure --all-files
Test:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: 💾 Check out repository
uses: actions/checkout@v3
- name: unittest
shell: bash
path: ./tests

Check failure on line 41 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 41
run: python3 -m unittest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false