-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Configure installation of dev version
- Loading branch information
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,13 +87,22 @@ For example, tests see files inside the [tests directory](./tests). | |
mv unittest /usr/local/bin/ | ||
``` | ||
|
||
### Development version | ||
|
||
```bash | ||
git clone [email protected]:macie/unittest.sh.git | ||
cd unittest.sh | ||
make && make install | ||
``` | ||
|
||
## Development | ||
|
||
Use `make` (GNU or BSD): | ||
|
||
- `make` - run checks | ||
- `make test` - run test | ||
- `make check` - perform static code analysis | ||
- `make install` - install in `/usr/local/bin` | ||
- `make dist` - prepare for distributing | ||
- `make clean` - remove distributed artifacts | ||
- `make release` - tag latest commit as a new release | ||
|