Skip to content

Commit e2e0b95

Browse files
committed
Simplify CI setup a bit
1 parent 6fe712e commit e2e0b95

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

.github/workflows/CI.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,6 @@ jobs:
4343
- name: Checkout
4444
uses: actions/checkout@v1
4545

46-
- name: Install rust
47-
uses: actions-rs/toolchain@v1
48-
with:
49-
toolchain: stable
50-
profile: minimal
51-
override: true
52-
53-
- name: Build
54-
shell: bash
55-
run: "make"
56-
5746
- name: Test
5847
shell: bash
5948
run: "make test"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ format:
5252
$(call docker_exec,rust,cargo fmt --color=always --all)
5353

5454
.PHONY: test build
55-
test: $(AKG)
55+
test: $(NATIVE_EXE)
5656
ifeq ($(USE_DOCKER),true)
5757
docker build --build-arg UID=$(UID) --build-arg GID=$(GID) -t authorized-keys-github-test .
5858
endif

0 commit comments

Comments
 (0)