MochaPayload/.github/workflows/pr.yml

25 lines
585 B
YAML
Raw Normal View History

2020-08-12 17:59:45 +02:00
name: CI-PR
on: [pull_request]
jobs:
2022-02-04 14:23:22 +01:00
clang-format:
2022-08-26 11:22:41 +02:00
runs-on: ubuntu-22.04
2022-02-04 14:23:22 +01:00
steps:
- uses: actions/checkout@v2
- name: clang-format
run: |
2023-03-16 11:59:22 +01:00
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source
2020-08-12 17:59:45 +02:00
build-binary:
2022-08-26 11:22:41 +02:00
runs-on: ubuntu-22.04
2022-02-04 14:23:22 +01:00
needs: clang-format
2020-08-12 17:59:45 +02:00
steps:
- uses: actions/checkout@v2
- 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"