Skip to content

Commit 453237a

Browse files
cleaup, dark screen, config for test
1 parent 2c34156 commit 453237a

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

.github/workflows/test.yml

+3
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,8 @@ jobs:
1515
- name: Check out code
1616
uses: actions/checkout@v1
1717

18+
- name: Config
19+
run: make config
20+
1821
- name: Test
1922
run: make integration-test

Makefile

+4-5
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,17 @@ all: help
1818
build: ## Build all the binaries and put the output in bin/
1919
$(GOCMD) build -ldflags "-X main.version=$(BRANCH)-$(HASH)" -o bin/$(PROJECT_NAME) .
2020

21-
## Config:
22-
config: ## Generate default config
23-
./bin/$(PROJECT_NAME) config > ./config.yaml
24-
2521
## Clean:
2622
clean: ## Remove build related file
2723
@-rm -fr ./bin
2824

2925
## Run:
30-
run: clean build config ## Run the smolgit `make run`
26+
run: clean build ## Run the smolgit `make run`
3127
./bin/$(PROJECT_NAME) $(ARGS)
3228

29+
config: ## Generate default config
30+
./bin/$(PROJECT_NAME) config > ./config.yaml
31+
3332
## Test:
3433
test: ## Run the tests of the smolgit
3534
$(GOTEST) -v -race ./...

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828
### Preview
2929

3030
<p align="center">
31-
<img src="assets/web_2.png" alt="screenshot" width="700" />
31+
<img src="assets/web_1.png" alt="screenshot" width="700" />
3232
</p>
3333
<p align="center">
34-
<img src="assets/web_1.png" alt="screenshot" width="700" />
34+
<img src="assets/web_2.png" alt="screenshot" width="700" />
3535
</p>
3636

3737

assets/web_1.png

-67.3 KB
Loading

assets/web_2.png

63.2 KB
Loading

config.yaml

Whitespace-only changes.

0 commit comments

Comments
 (0)