Skip to content

Commit aab37f1

Browse files
committed
[pre-commit] add CI workflow file
1 parent cb5fdcb commit aab37f1

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/pre-commit.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: pre-commit
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
pre-commit:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: julia-actions/setup-julia@v2
12+
with:
13+
version: 1.11
14+
- run: |
15+
julia --project=@runic -e '
16+
using Pkg
17+
Pkg.add("Runic")'
18+
env:
19+
PYTHON: ""
20+
- uses: actions/setup-python@v5
21+
- uses: pre-commit/action@v3.0.1

0 commit comments

Comments
 (0)