Skip to content

Instantly share code, notes, and snippets.

@ei1333
Created December 11, 2022 12:10
Show Gist options
  • Select an option

  • Save ei1333/7906e9223247e2fc5890817ff8e132d2 to your computer and use it in GitHub Desktop.

Select an option

Save ei1333/7906e9223247e2fc5890817ff8e132d2 to your computer and use it in GitHub Desktop.
verify.yml
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