mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-13 03:49:20 +02:00
Add github CI action for ubuntu
This commit is contained in:
parent
1684aa3806
commit
aa5819fe35
|
@ -0,0 +1,21 @@
|
|||
name: ubuntu
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: make
|
||||
run: make
|
||||
- name: install check
|
||||
run: sudo apt install check
|
||||
- name: run tests
|
||||
run: make check
|
Loading…
Reference in New Issue