ci: setup basic github action
This commit is contained in:
parent
c9454eb5d3
commit
a202fadc9e
18
.github/workflows/ci.yml
vendored
Normal file
18
.github/workflows/ci.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
|
||||
name: Build
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install build-essential llvm lld nasm
|
||||
- name: Build
|
||||
run: |
|
||||
make
|
||||
|
Loading…
Reference in a new issue