Skip to content

Commit 1331e16

Browse files
committed
Add very minimal simple CI (copied from rustc-hash)
1 parent 6e594e4 commit 1331e16

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/rust.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Rust
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ${{ matrix.os }}-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: rust-lang/simpleinfra/github-actions/simple-ci@master
11+
- name: "32-bit cross testing"
12+
run: |
13+
rustup toolchain install nightly
14+
rustup override set nightly
15+
rustup component add miri
16+
cargo +nightly miri test --target i686-unknown-linux-gnu
17+
strategy:
18+
matrix:
19+
os: [ubuntu, windows, macos]

0 commit comments

Comments
 (0)