Skip to content

Commit

Permalink
Update commit
Browse files Browse the repository at this point in the history
  • Loading branch information
itchibli committed Mar 19, 2024
1 parent 8462308 commit d50ee2c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,14 @@ jobs:
- name: Test with pytest
run: |
pytest
build-docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Login to registry
run: echo ${{ secrets.PERSONAL_TOKEN }} | docker login ghcr.io -u AlexandreMaquet-HeArc --password-stdin
- name: Build the Docker image
run: docker build . --file Dockerfile --tag ghcr.io/AlexandreMaquet-HeArc/tp2:latest
- name: Push the image into the registry
run: docker push ghcr.io/AlexandreMaquet-HeArc/tp2:latest
4 changes: 4 additions & 0 deletions reponses.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@

- Q: La première étape contient le mot-clé ‘with’, a quoi sert-il ?
- R: Ce mot permet de spécifier certains prérequis à utiliser. Dans ce cas, cela force à utiliser la version 3.10 de Python


TODO: ex1.c
https://github.com/AlexandreMaquet-HeArc/TP2_IND-LOG

0 comments on commit d50ee2c

Please sign in to comment.