Main CI workflow #1593
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |