convert test_cases and failure_test_cases to pytest.param #6586
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: Push mirror | |
| on: | |
| push: | |
| branches: ['**'] | |
| jobs: | |
| push: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: mirror-repository | |
| uses: ppcad/mirror-action@v0.4.5 | |
| with: | |
| REMOTE: ${{ secrets.GIT_REMOTE_URL }} | |
| GIT_USERNAME: ${{ secrets.GIT_USERNAME }} | |
| GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }} | |
| GIT_PUSH_ARGS: '--force --quiet --no-progress' | |
| DEBUG: "false" |