This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
Question 2 #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: AA TP P6 | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Install CMake and GNU Make | |
run: sudo apt-get -y install cmake make | |
- name: Run CMake | |
run: cmake ./../ | |
working-directory: ./build | |
- name: Build Application | |
run: make | |
working-directory: ./build | |
- name: Run diviser_pour_regner | |
run: make run_diviser_pour_regner | |
working-directory: ./build | |
- name: Run methodes_gloytonnes | |
run: make run_methodes_gloytonnes | |
working-directory: ./build | |
- name: Run programmation_dynamique | |
run: make run_programmation_dynamique | |
working-directory: ./build |