-
Notifications
You must be signed in to change notification settings - Fork 3
34 lines (32 loc) · 897 Bytes
/
ci.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
---
name: CI
on: [push, pull_request]
jobs:
verify:
runs-on: ubuntu-latest
container: debian:bookworm
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install dependencies
run: |
apt-get update && apt-get install --yes --no-install-recommends make openssl python3 python3-poetry
poetry install --no-ansi
- name: Verify ruleset signature
run: |
make verify
lint:
runs-on: ubuntu-latest
container: debian:bookworm
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install dependencies
run: |
apt-get update && apt-get install --yes --no-install-recommends make python3 python3-poetry
poetry install --no-ansi
- name: Run all linters
run: |
make lint