-
Notifications
You must be signed in to change notification settings - Fork 7
49 lines (41 loc) · 962 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
on: # yamllint disable-line rule:truthy
push:
branches:
- 'master'
tags:
- 'v*.*.*'
pull_request:
branches:
- 'master'
release:
types:
- 'created'
schedule:
# Every Sunday at 05:10
- cron: '10 5 * * 0'
name: 🔍 Continuous integration
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: 📦 Install goss
uses: e1himself/goss-installation-action@v1.1.0
- name: 📦 Check out the codebase
uses: actions/checkout@v3
with:
fetch-depth: 0
### For Cross Platform OSX builds uncomment these lines
- name: 🖥️ Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: arm64
- name: 🚀 Set up Docker BuildX
uses: docker/setup-buildx-action@v2
with:
install: true
- name: 🧪 Run dcgoss tests
run: make test
...