Skip to content

Commit

Permalink
Merge pull request #5 from lui7henrique/task/test-coverage
Browse files Browse the repository at this point in the history
feat(workflows): Add execution of tests for coverage in workflow.
  • Loading branch information
lui7henrique authored Oct 11, 2024
2 parents 3e2ed4d + fd25ac2 commit 7fd78d0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Coverage
name: Tests

on:
push:
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**

Expand Down

0 comments on commit 7fd78d0

Please sign in to comment.