gridfinity-rebuilt-openscad/.github/workflows/ci.yml

57 lines
1.2 KiB
YAML
Raw Normal View History

name: Test
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
2024-08-04 05:31:51 +00:00
PreCommit:
name: pre-commit
runs-on: ubuntu-latest
steps:
- name: 💾 Check out repository
2024-08-04 05:31:51 +00:00
uses: actions/checkout@v4
- 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
2024-08-04 05:31:51 +00:00
Test:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: 💾 Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install OpenSCAD
run: |
sudo apt-get update
sudo apt-get install openscad
- name: Run Unit Tests
shell: bash
working-directory: ./tests
run: python3 -m unittest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false