mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-14 04:19:20 +02:00
22 lines
317 B
YAML
22 lines
317 B
YAML
|
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
|