Add the cache database and do nothing with it #20
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: tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| - uses: gleam-lang/setup-gleam@v1.0.2 | |
| with: | |
| gleam-version: "1.7.0" | |
| - run: bun install | |
| - run: bun ./build.ts gleam deps download | |
| - run: bun ./build.ts gleam test | |
| - run: bun ./build.ts gleam format --check src test |