diff --git a/.github/workflows/coverage.yml b/.github/workflows/tests.yml similarity index 89% rename from .github/workflows/coverage.yml rename to .github/workflows/tests.yml index 0f03fc0..71a2318 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/tests.yml @@ -1,4 +1,4 @@ -name: Coverage +name: Tests on: push: @@ -39,8 +39,13 @@ jobs: - name: Install dependencies run: bun install + run: bun install + - name: Run migrations run: bun run pretest + - name: Execute tests + run: bun run test + - name: Execute test coverage run: bun run test:coverage diff --git a/README.md b/README.md index b8dc3be..f5a00e5 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ 4. **Testing** - [x] Write tests with at least 90% coverage. - - [ ] Set up continuous integration to run tests and check coverage. + - [x] Set up continuous integration to run tests and check coverage. 5. **Monitoring and Optimization**