-
Notifications
You must be signed in to change notification settings - Fork 102
46 lines (45 loc) · 1.04 KB
/
ci.yaml
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
---
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint:
strategy:
fail-fast: false
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Earthly
uses: earthly/actions-setup@v1
- name: Lint
run: |
earthly --ci +lint
build:
strategy:
fail-fast: false
matrix:
os:
- "ubuntu:focal"
- "debian:bullseye"
- "ubuntu:jammy"
- "debian:bookworm"
# TODO(astraw/stdeb#195)
# - "ubuntu:noble"
# - "debian:trixie"
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Earthly
uses: earthly/actions-setup@v1
- name: packaging-tests
run: |
earthly --ci +test --OS=${{matrix.os}}
- name: pypi-install tests
run: |
earthly --ci +test-pypi-install --OS=${{matrix.os}}
- name: twoandthree-tests
run: |
earthly --ci +test-2and3 --OS=${{matrix.os}}