Skip to content

Commit df45891

Browse files
authored
Create verify.yml
1 parent b3b905d commit df45891

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/verify.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: verify
2+
3+
on: push
4+
5+
jobs:
6+
verify:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v1
11+
12+
- name: Set up Python
13+
uses: actions/setup-python@v1
14+
15+
- name: Install dependencies
16+
run: pip3 install -U online-judge-verify-helper
17+
18+
- name: Run tests
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
YUKICODER_TOKEN: ${{ secrets.YUKICODER_TOKEN }}
22+
GH_PAT: ${{ secrets.GH_PAT }}
23+
run: oj-verify all

0 commit comments

Comments
 (0)