-
Notifications
You must be signed in to change notification settings - Fork 4
53 lines (43 loc) · 1.18 KB
/
ci.yml
File metadata and controls
53 lines (43 loc) · 1.18 KB
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
52
53
name: CI
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
permissions:
contents: read
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v5
- name: Sync project dependencies
run: uv sync --locked
- name: Validate skills
run: make validate
- name: Run tests
run: make test
- name: Check spelling
uses: crate-ci/typos@v1.44.0
- name: Cache lychee results
uses: actions/cache@v5
with:
path: .lycheecache
key: ${{ runner.os }}-lychee-${{ hashFiles('lychee.toml') }}-${{ github.ref_name }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-lychee-${{ hashFiles('lychee.toml') }}-${{ github.ref_name }}-
${{ runner.os }}-lychee-${{ hashFiles('lychee.toml') }}-
- name: Check links
uses: lycheeverse/lychee-action@v2
with:
args: --config lychee.toml .
jobSummary: true
token: ${{ secrets.GITHUB_TOKEN }}