[Add dnd-character Code File for Test] Forgot the Code File for the DnD-Character Test #117
Workflow file for this run
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: CI | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '.gitignore' | |
| - 'LICENSE' | |
| - '**.md' | |
| push: | |
| paths-ignore: | |
| - '.gitignore' | |
| - 'LICENSE' | |
| - '**.md' | |
| jobs: | |
| test: | |
| name: Test Analyzer | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@50fbc622fc4ef5163becd7fab6573eac35f8462e | |
| - name: Build Docker Image | |
| run: docker build -f Dockerfile -t python-analyzer . | |
| - name: Run Tests | |
| run: docker run --entrypoint "pytest" python-analyzer |