Skip to content

Commit

Permalink
Setup CI
Browse files Browse the repository at this point in the history
  • Loading branch information
marc0246 committed Sep 13, 2023
1 parent 4e88bee commit ab09eb9
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Rust

on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'

env:
CARGO_TERM_COLOR: always

jobs:
linux_miri:
name: Miri
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Miri
run: |
rustup toolchain install nightly --component miri
rustup override set nightly
cargo miri setup
- name: Run tests with Miri
run: cargo miri test

0 comments on commit ab09eb9

Please sign in to comment.