-
Notifications
You must be signed in to change notification settings - Fork 3
51 lines (41 loc) · 1.05 KB
/
verify.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Verify
on:
push:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
with:
cache_key_prefix: mise-{{hashFiles('mise.toml')}}
experimental: true
- name: Lint
run: mise lint
publishable:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
with:
experimental: true
- name: Passes publish checks
run: mise run verify-publish:*
codegen-up-to-date:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
with:
cache_key_prefix: mise-{{hashFiles('mise.toml')}}
experimental: true
- name: Run codegen
run: mise run gen
- name: Check for changed files
run: |
if [[ -n $(git status --porcelain) ]]; then
echo "Files have changed after running tests:"
git status --porcelain
git diff
exit 1
fi