[auto-verifier] verify commit 71da8130d32a67470b7af7474881e5275101c750 #214
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-latest | |
| 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 |