blob: 4c36c6bf9007db2fc664e71a765be78baca6f965 (
plain) (
blame)
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
|
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
# Run CI nightly (midnight)
- cron: "0 0 * * *"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: make clean
run: make clean
- name: make
run: make
- name: make test
run: make test
|