mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-06-06 03:12:01 +00:00
21 lines
565 B
YAML
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 |