Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,21 @@ jobs:
- name: Test
run: cargo test -- --nocapture

download:
runs-on: ubuntu-latest
env:
CXX: g++-12
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- run: git clone https://github.com/yosupo06/library-checker-problems
- run: pip3 install colorlog
- run: ulimit -s unlimited
- run: cd library-checker-problems && ./generate.py -p unionfind
- run: cd library-checker-problems && ./generate.py -p jump_on_tree --test

oj-test:
runs-on: ubuntu-latest
env:
Expand Down
Loading