flip get_formation to return right, left instead of left, right for … #1586
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: Continuous Integration | |
| on: | |
| push: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up pixi | |
| uses: prefix-dev/setup-pixi@v0.8.3 | |
| with: | |
| run-install: false | |
| - name: Run tests | |
| run: | | |
| if [[ $GITHUB_EVENT_NAME == "push" ]]; then | |
| pixi run -- pytest utama_core/tests/ --level full --ignore-glob "**/*grsim*" --headless --junit-xml=test-results.xml | |
| elif [[ $GITHUB_EVENT_NAME == "pull_request" ]]; then | |
| pixi run -- pytest utama_core/tests/ --level quick --ignore-glob "**/*grsim*" --headless --junit-xml=test-results.xml | |
| fi | |
| - name: Test Report | |
| if: always() | |
| uses: pmeier/pytest-results-action@main | |
| with: | |
| path: test-results.xml | |
| summary: true | |
| display-options: fEX | |
| fail-on-empty: true | |
| title: RSoccer CI Test Results |