mirror of
https://github.com/adrianschlatter/threadlib.git
synced 2025-08-13 20:54:43 +02:00
Create make workflow
make clean; make; make test
This commit is contained in:
21
.github/workflows/make.yml
vendored
Normal file
21
.github/workflows/make.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
name: make
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
make_test:
|
||||||
|
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Clean up
|
||||||
|
run: make clean
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: make
|
||||||
|
|
||||||
|
- name: Run tests
|
||||||
|
run: make test
|
Reference in New Issue
Block a user