Skip to content
This repository has been archived by the owner on Jan 26, 2025. It is now read-only.

Update Tests_Checker.yml #1413

Update Tests_Checker.yml

Update Tests_Checker.yml #1413

Workflow file for this run

name: Build Checker
env:
BINARY0: ./lib/my/libmy.a
on:
push:
pull_request:
workflow_dispatch:
jobs:
check_build:
runs-on: ubuntu-latest
container: epitechcontent/epitest-docker
steps:
- name: Checkout Repository
uses: actions/checkout@v3.4.0
- name: Run Build
run: make re
timeout-minutes: 2
- name: Check BINARY0 Binary
run: |
if [ ! -f $BINARY0 ]; then
echo "$BINARY0 not found. Exiting with error."
exit 1
fi