Skip to content

Commit 9480d17

Browse files
committed
Clean up GitHub Actions
1 parent 1c01365 commit 9480d17

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- "v[0-9]+.[0-9]+.[0-9]+"
77

88
jobs:
9-
release-linux-binaries:
9+
release-linux-x86_64-binaries:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout source code
@@ -35,7 +35,7 @@ jobs:
3535
complgen-x86_64-unknown-linux-musl
3636
3737
38-
release-arm-linux-binaries:
38+
release-linux-arm-binaries:
3939
runs-on: ubuntu-latest
4040
steps:
4141
- name: Checkout source code

.github/workflows/test.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Rust
1+
name: Test
22

33
on:
44
push:
@@ -10,15 +10,14 @@ env:
1010
CARGO_TERM_COLOR: always
1111

1212
jobs:
13-
build:
14-
13+
cargo-test:
1514
runs-on: ubuntu-latest
16-
1715
steps:
1816
- uses: actions/checkout@v3
19-
- name: Build
20-
run: cargo build
21-
- name: Run tests
22-
run: cargo test
23-
- name: Run e2e tests
24-
run: ./run-e2e-tests.bash
17+
- run: cargo test
18+
19+
e2e-test:
20+
needs: cargo-test
21+
runs-on: ubuntu-latest
22+
steps:
23+
- run: ./run-e2e-tests.bash

0 commit comments

Comments
 (0)