Add greedy preprocessing in weighted matroid intersection #792
Workflow file for this run
This file contains 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: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
- name: Install boost | |
run: sudo apt install -y libboost-dev | |
- name: Install dependencies | |
run: pip3 install -U online-judge-verify-helper | |
- name: Clone AC Library | |
run: cd ${GITHUB_WORKSPACE}/../ && git clone https://github.com/atcoder/ac-library.git | |
- name: Add AC Library to CPLUS_INCLUDE_PATH | |
run: echo "CPLUS_INCLUDE_PATH=$CPLUS_INCLUDE_PATH:${GITHUB_WORKSPACE}/../ac-library" >> $GITHUB_ENV | |
- name: Run tests | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_PAT: ${{ secrets.GH_PAT }} | |
YUKICODER_TOKEN: ${{ secrets.YUKICODER_TOKEN }} | |
DROPBOX_TOKEN: ${{ secrets.DROPBOX_TOKEN }} | |
run: oj-verify all --jobs 2 |