AutobootModule/.github/workflows/pr.yml

25 lines
576 B
YAML
Raw Normal View History

2021-12-28 20:17:21 +01:00
name: CI-PR
on: [pull_request]
jobs:
2022-02-02 19:57:14 +01:00
clang-format:
2021-12-28 20:17:21 +01:00
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
2022-02-02 19:57:14 +01:00
- name: clang-format
2021-12-28 20:17:21 +01:00
run: |
2022-02-02 19:57:14 +01:00
docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./source
build-binary:
runs-on: ubuntu-18.04
needs: clang-format
steps:
- uses: actions/checkout@v2
2021-12-28 20:17:21 +01:00
- name: build binary
run: |
docker build . -t builder
docker run --rm -v ${PWD}:/project builder make
- uses: actions/upload-artifact@master
with:
name: binary
path: "*.rpx"