Skip to content
This repository was archived by the owner on Mar 20, 2024. It is now read-only.

Commit 08cace2

Browse files
Use rust stable?
1 parent 11a600d commit 08cace2

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

rust-toolchain.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[toolchain]
2+
channel = "stable"

test.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: test
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
merge_group:
9+
10+
jobs:
11+
test:
12+
env:
13+
RUSTC_WRAPPER: sccache
14+
CARGO_INCREMENTAL: 0
15+
CARGO_HOME: /vol/cargo
16+
runs-on: self-hosted
17+
steps:
18+
- name: Check out repository code
19+
uses: actions/checkout@v4
20+
- name: Run tests
21+
run: |
22+
cd ${{ github.workspace }}
23+
sccache --zero-stats
24+
cargo clippy
25+
cargo test
26+
sccache --show-stats

0 commit comments

Comments
 (0)