Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

docs: correct Earthly targets #71

Merged
merged 1 commit into from
Sep 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ This amount should then be transferred into a savings goal, helping the customer
* [Check Linting](#check-linting)
* [Check Module Tidying](#check-module-tidying)
* [Fix Module Tidying](#fix-module-tidying)
* [Compiling](#compiling)
* [Unit Testing](#unit-testing)
* [Compile](#compile)
* [Unit Test](#unit-test)

## Usage
To use this tool you first of all want to compile Go source code to a binary, see [setup](#setup) and [compiling](#compiling) on details to compile the binary.
Expand Down Expand Up @@ -177,7 +177,7 @@ You can fix missing or redundant module requirements by running the command.
earthly +fix-module-tidying
```

#### Compiling
#### Compile
You can compile the source code into a binary for an architecture by running the command.

```sh
Expand All @@ -192,9 +192,9 @@ The available architectures are `linux-amd64` and `darwin-amd64`.
earthly +compile-linux-amd64
```

#### Unit Testing
#### Unit Test
You can run all the unit tests by running the command.

```sh
earthly +unit-testing
earthly +unit-test
```