-
Notifications
You must be signed in to change notification settings - Fork 91
38 lines (38 loc) · 939 Bytes
/
build.yml
File metadata and controls
38 lines (38 loc) · 939 Bytes
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
name: 👀 Linter
on:
pull_request:
branches:
- "main"
push:
branches:
- "main"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-check:
name: Lint Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: ./tools/github-actions/setup-deps
- name: Checkout LFS objects
run: git lfs checkout
- name: Lint Checks
run: |
make install-tools
make install
make lint
build:
name: Build
runs-on: ubuntu-latest
needs: lint-check
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: ./tools/github-actions/setup-deps
- name: Checkout LFS objects
run: git lfs checkout
- name: Build
run: |
make install
make build