Skip to content

Commit

Permalink
Add very minimal simple CI (copied from rustc-hash)
Browse files Browse the repository at this point in the history
  • Loading branch information
Urgau committed Jun 4, 2024
1 parent 6e594e4 commit 1331e16
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Rust

on: [push, pull_request]

jobs:
build:
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v4
- uses: rust-lang/simpleinfra/github-actions/simple-ci@master
- name: "32-bit cross testing"
run: |
rustup toolchain install nightly
rustup override set nightly
rustup component add miri
cargo +nightly miri test --target i686-unknown-linux-gnu
strategy:
matrix:
os: [ubuntu, windows, macos]

0 comments on commit 1331e16

Please sign in to comment.