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 90f092b commit 3b623a6Copy full SHA for 3b623a6
.github/workflows/rust.yml
@@ -15,8 +15,21 @@ jobs:
15
runs-on: ubuntu-latest
16
17
steps:
18
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
19
+ - uses: actions/cache@v4
20
+ with:
21
+ path: |
22
+ ~/.cargo/bin/
23
+ ~/.cargo/registry/index/
24
+ ~/.cargo/registry/cache/
25
+ ~/.cargo/git/db/
26
+ target/
27
+ key: ubuntu-latest-cargo-build-stable-${{ hashFiles('**/Cargo.toml') }}
28
- name: Build
29
run: cargo build --verbose
30
- name: Run tests
31
run: cargo test --verbose
32
+ - name: Upload a Build Artifact
33
+ uses: actions/[email protected]
34
35
+ path: target/debug/simple_render_window
0 commit comments