mirror of
https://github.com/kennetek/gridfinity-rebuilt-openscad.git
synced 2024-12-22 06:43:25 +00:00
Add Github Actions workflow to run pre-commit
This commit is contained in:
parent
046ed3067c
commit
a7e91ab825
1 changed files with 34 additions and 0 deletions
34
.github/workflows/ci.yml
vendored
Normal file
34
.github/workflows/ci.yml
vendored
Normal file
|
@ -0,0 +1,34 @@
|
|||
name: Test
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
Test:
|
||||
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 --all-files
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: false
|
Loading…
Reference in a new issue