Updated used docker image/container to run tests #3
This file contains hidden or 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: Makefile CI | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: dabuche0/skill_sharp:latest | |
| credentials: | |
| username: dabuche0 | |
| password: ${{ secrets.docker_hub_password }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run tests | |
| run: make test_all |