-
-
Save ei1333/7906e9223247e2fc5890817ff8e132d2 to your computer and use it in GitHub Desktop.
verify.yml
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: | |
| branches: | |
| - main | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| 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 }} | |
| DROPBOX_TOKEN: ${{ secrets.DROPBOX_TOKEN }} | |
| YUKICODER_TOKEN: ${{ secrets.YUKICODER_TOKEN }} | |
| GH_PAT: ${{ secrets.GH_PAT }} | |
| run: oj-verify all |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment