Skip to content

Commit 7de2b85

Browse files
committed
Merge #1110: Add a new job to the testing workflow to test compilation in different OSs
38baaea ci: [#1099] Add a new job to the testing workflow to test compilation in different OSs (Jose Celano) Pull request description: Add a new job to the testing workflow to test compilation in different operating systems. ACKs for top commit: josecelano: ACK 38baaea Tree-SHA512: b9a94eea9e13f1ec5cb64cf47bfe1848ea62aac0872e0b424e604f4f5e17dbd7b8f5c3ccb4e6132fdd7fa230870cb34b8fda9b0621cccb29af293a7e60e3b262
2 parents f0ced13 + 38baaea commit 7de2b85

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/testing.yaml

+21
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,27 @@ jobs:
8585
name: Check Unused Dependencies
8686
run: cargo machete
8787

88+
build:
89+
name: Build on ${{ matrix.os }} (${{ matrix.toolchain }})
90+
runs-on: ${{ matrix.os }}
91+
92+
strategy:
93+
matrix:
94+
os: [ubuntu-latest, macos-latest, windows-latest]
95+
toolchain: [nightly, stable]
96+
97+
steps:
98+
- name: Checkout code
99+
uses: actions/checkout@v4
100+
101+
- id: setup
102+
name: Setup Toolchain
103+
uses: dtolnay/rust-toolchain@stable
104+
with:
105+
toolchain: ${{ matrix.toolchain }}
106+
107+
- name: Build project
108+
run: cargo build --verbose
88109

89110
unit:
90111
name: Units

0 commit comments

Comments
 (0)