Skip to content

Commit b705156

Browse files
committed
cleanup
1 parent 00773f9 commit b705156

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: CI
23

34
on:
@@ -10,7 +11,6 @@ on:
1011

1112
defaults:
1213
run:
13-
# see: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#using-a-specific-shell
1414
shell: bash --noprofile --norc -eo pipefail {0}
1515

1616
env:
@@ -33,7 +33,7 @@ jobs:
3333
make docker-image
3434
- name: "Unit Tests"
3535
run: |
36-
make docker-unit-tests
36+
make docker-unit-test
3737
mkdir -p out/coverage
3838
mv unit.out out/coverage/
3939
- uses: actions/upload-artifact@v4

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ aptly version: 1.5.0+189+g0fc90dff
130130

131131
In order to run aptly unit tests, enter the following:
132132
```
133-
make docker-unit-tests
133+
make docker-unit-test
134134
```
135135

136136
#### Running system tests

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ docker-shell: ## Run aptly and other commands in docker container
194194
docker-deb: ## Build debian packages in docker container
195195
@$(DOCKER_RUN) -t aptly-dev /work/src/system/docker-wrapper dpkg DEBARCH=amd64
196196

197-
docker-unit-tests: ## Run unit tests in docker container (add TEST=regex to specify which tests to run)
197+
docker-unit-test: ## Run unit tests in docker container (add TEST=regex to specify which tests to run)
198198
$(DOCKER_RUN) -t --tmpfs /smallfs:rw,size=1m aptly-dev /work/src/system/docker-wrapper \
199199
azurite-start \
200200
AZURE_STORAGE_ENDPOINT=http://127.0.0.1:10000/devstoreaccount1 \

0 commit comments

Comments
 (0)