-
Notifications
You must be signed in to change notification settings - Fork 16
42 lines (40 loc) · 1.36 KB
/
main.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
name: Main CI workflow
# Note: If the workflow name is changed, the CI badge URL in the README must also be updated
on:
push: # Push trigger runs on any pushed branch.
schedule: # Scheduled trigger runs on the latest commit on the default branch.
- cron: "20 22 * * *"
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
with:
lfs: false
- name: Lint with Ubuntu 20.04
run: |
docker run \
--volume $PWD:/host \
--workdir /host/continuous-integration/linux \
ubuntu:20.04 \
bash -c "./setup.sh && ./lint.sh"
ubuntu:
name: Ubuntu build
runs-on: ubuntu-latest
strategy:
matrix:
ubuntu-version: ["20.04"]
steps:
- name: Check out code
uses: actions/checkout@v3
with:
lfs: false
- name: Build
run: |
docker run \
--volume $PWD:/host \
--workdir /host/continuous-integration/linux \
ubuntu:${{ matrix.ubuntu-version }} \
bash -c "./setup.sh && ./build.sh"