-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (32 loc) · 803 Bytes
/
ci.yaml
File metadata and controls
36 lines (32 loc) · 803 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
name: CI
on:
push:
branches: [main]
paths-ignore: ["**.md"]
pull_request:
branches: [main]
paths-ignore: ["**.md"]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: j178/prek-action@v1
bootstrap:
runs-on: ${{ matrix.os }}-latest
container: ${{ matrix.container }}
strategy:
fail-fast: false
matrix:
include:
- os: macos
- os: ubuntu
- os: ubuntu
container: alpine
steps:
- run: apk add bash curl git
if: matrix.container == 'alpine'
- run: curl -fsSL https://raw.githubusercontent.com/${{ github.repository }}/${{ github.sha }}/bootstrap | HOME=$PWD/tmp bash