Skip to content

Commit

Permalink
feat: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
kweeuhree committed Jan 2, 2025
1 parent 2df1e00 commit 2695869
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,16 @@ Go's built-in `testing` package is used for testing the utility functions that a
In the project folder, run the following command:

```sh
go test ./cmd/web
go test ./...
```

### Continuous Integration

In order to automate the testing, a GitHub Actions workflow is set up. The workflow executes all existing tests on every push to the repository. This helps to ensure code quality and catch issues early on.

**Workflow overview**:

- get the latest code from the repository;
- configure the Go environment with the specified version;
- install project dependencies using `go mod tidy`;
- run all tests using `go test ./...`.

0 comments on commit 2695869

Please sign in to comment.