Fixed wrong definition in SKILL when it should be SKILL++ #34
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: Run Specifications & Unit-Tests | |
| on: | |
| push: | |
| branches: [ "main", "dev" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| test: | |
| 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 |