[auto-verifier] verify commit c4b46f583291bd1a8d414e0d2bf58c8339aa2ea3 #222
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: verify | |
| on: push | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Set up Python | |
| uses: actions/setup-python@v1 | |
| - name: Install dependencies | |
| run: pip3 install -U online-judge-verify-helper | |
| - name: Run tests | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| YUKICODER_TOKEN: ${{ secrets.YUKICODER_TOKEN }} | |
| GH_PAT: ${{ secrets.GH_PAT }} | |
| run: oj-verify all |