We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8448ce4 + ac9da15 commit 5d57e0bCopy full SHA for 5d57e0b
.github/workflows/ci.yml
@@ -0,0 +1,31 @@
1
+name: ci
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches:
7
+ - 'master'
8
+ - '[0-9]+.[0-9]{2}'
9
+ tags:
10
+ - 'v*'
11
+ pull_request:
12
13
+jobs:
14
+ build:
15
+ runs-on: ubuntu-20.04
16
+ strategy:
17
+ fail-fast: false
18
+ matrix:
19
+ target:
20
+ - debian-bullseye
21
+ steps:
22
+ -
23
+ name: Checkout
24
+ uses: actions/checkout@v3
25
26
+ name: Set up Docker Buildx
27
+ uses: docker/setup-buildx-action@v1
28
29
+ name: Build
30
+ run: |
31
+ make ${{ matrix.target }}
0 commit comments