Skip to content

Commit c883b9a

Browse files
authored
Add test for download_assembly (#2)
* Add test for download_assembly * Do not use matrix for testing
1 parent 91c0d33 commit c883b9a

File tree

4 files changed

+922
-49
lines changed

4 files changed

+922
-49
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,11 @@ env:
1010
CARGO_TERM_COLOR: always
1111

1212
jobs:
13-
build:
13+
test:
1414
runs-on: ${{ matrix.runner }}
1515
strategy:
1616
matrix:
1717
include:
18-
# macos - ARM
19-
- os: macos-latest
20-
architecture: arm64
21-
runner: macos-14 # m1
22-
# macos - x86
23-
- os: macos-latest
24-
architecture: x64
25-
runner: macos-13 # x86
2618
# ubuntu - x86
2719
- os: ubuntu-latest
2820
architecture: x64
@@ -31,13 +23,6 @@ jobs:
3123

3224
steps:
3325
- uses: actions/checkout@v4
34-
- name: Build
35-
run: cargo build --verbose
3626

3727
- name: Run tests
38-
run: cargo test --verbose
39-
40-
- name: Build (Release)
41-
run: |
42-
cargo build --release
43-
ls -lash target/release
28+
run: cargo test

0 commit comments

Comments
 (0)