ACID upper case #17
Workflow file for this run
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
| # Build the crate, run the tests, and check the code format. | |
| name: Build | |
| on: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - run: npx bun install | |
| - run: npx bun run build | |
| env: | |
| TERMINUSDB_API_TOKEN: ${{ secrets.TERMINUSDB_API_TOKEN }} | |
| TERMINUSDB_API_ENDPOINT: ${{ vars.TERMINUSDB_API_ENDPOINT }} | |
| TERMINUSDB_TEAM: ${{ vars.TERMINUSDB_TEAM }} | |
| TERMINUSDB_DB: ${{ vars.TERMINUSDB_DB }} | |
| TERMINUSDB_USER: ${{ vars.TERMINUSDB_USER }} |