We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0ced13 commit 38baaeaCopy full SHA for 38baaea
.github/workflows/testing.yaml
@@ -85,6 +85,27 @@ jobs:
85
name: Check Unused Dependencies
86
run: cargo machete
87
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
109
110
unit:
111
name: Units
0 commit comments