Update and rename Biblio_Avril_2024.bib to Biblio_mai_2024.bib #69
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: Docker Compose Build and Run | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
compose-build-and-run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Build and Run with Docker Compose | |
run: | | |
chmod +x docker/check/check.sh | |
docker-compose -f docker/check/docker-compose.yml up --build | |
- name: Check container status | |
run: | | |
exit_status=$(docker inspect check_pandoc_1 --format='{{.State.ExitCode}}') | |
if [ "$exit_status" != "0" ]; then | |
echo "Container exited with error code $exit_status" | |
exit $exit_status | |
fi | |