ci: Add CI

This commit is contained in:
Ash Logan 2022-08-31 23:03:40 +10:00
parent 24a17536fc
commit 004e28cdce

18
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,18 @@
name: Inkay-CI
on: push
jobs:
build-inkay:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: build toolchain container
run: docker build . -t builder
- uses: ammaraskar/gcc-problem-matcher@master
- name: build Inkay
run: docker run --rm -v ${PWD}:/app -w /app builder
- uses: actions/upload-artifact@master
with:
name: inkay
path: "*.wps"