Files
Bomberman/.github/workflows/build_linux.yml
T
2021-06-01 13:48:34 +02:00

21 lines
565 B
YAML

name: Linux Build (Epitech Container)
on: [push, pull_request]
jobs:
testbox:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
container:
image: epitechcontent/epitest-docker:latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Build
run: |
mkdir build && cd build
cmake ..
cmake --build .
- name: CheckBinaryName
shell: bash
run: test -f build/bomberman