Skip to content

Commit

Permalink
cleaup, dark screen, config for test
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-kiselenko committed Jul 20, 2024
1 parent 2c34156 commit 453237a
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,8 @@ jobs:
- name: Check out code
uses: actions/checkout@v1

- name: Config
run: make config

- name: Test
run: make integration-test
9 changes: 4 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,17 @@ all: help
build: ## Build all the binaries and put the output in bin/
$(GOCMD) build -ldflags "-X main.version=$(BRANCH)-$(HASH)" -o bin/$(PROJECT_NAME) .

## Config:
config: ## Generate default config
./bin/$(PROJECT_NAME) config > ./config.yaml

## Clean:
clean: ## Remove build related file
@-rm -fr ./bin

## Run:
run: clean build config ## Run the smolgit `make run`
run: clean build ## Run the smolgit `make run`
./bin/$(PROJECT_NAME) $(ARGS)

config: ## Generate default config
./bin/$(PROJECT_NAME) config > ./config.yaml

## Test:
test: ## Run the tests of the smolgit
$(GOTEST) -v -race ./...
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
### Preview

<p align="center">
<img src="assets/web_2.png" alt="screenshot" width="700" />
<img src="assets/web_1.png" alt="screenshot" width="700" />
</p>
<p align="center">
<img src="assets/web_1.png" alt="screenshot" width="700" />
<img src="assets/web_2.png" alt="screenshot" width="700" />
</p>


Expand Down
Binary file modified assets/web_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/web_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file removed config.yaml
Empty file.

0 comments on commit 453237a

Please sign in to comment.