feat: add TableFormer V1 table structure recognition #125
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup protoc | |
| uses: ./.github/actions/setup-protoc | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: Swatinem/rust-cache@v2 | |
| - run: cargo build --workspace | |
| - run: cargo test --workspace | |
| env: | |
| ZOTERO_TEST_API_KEY: ${{ secrets.ZOTERO_TEST_API_KEY }} | |
| ZOTERO_TEST_USER_ID: ${{ secrets.ZOTERO_TEST_USER_ID }} |