Meowth/.github/workflows/ci.yml
2022-10-24 21:57:58 +11:00

18 lines
519 B
YAML

name: wups-CI
on: push
jobs:
build-wups:
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 WUPS plugin
run: docker run --rm -v ${PWD}:/app -w /app builder
- uses: actions/upload-artifact@master
with:
name: plugin
path: "*.wps"