Skip to content

Commit 5d57e0b

Browse files
authored
Merge pull request #660 from crazy-max/gha-init
ci: init github actions
2 parents 8448ce4 + ac9da15 commit 5d57e0b

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)