diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..adfbbeb --- /dev/null +++ b/.github/workflows/ci.yml @@ -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"