Skip to content

Commit

Permalink
(ci) add nightly toolchain tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissimpkins committed Dec 17, 2023
1 parent 769f14d commit b79a747
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/nightly-unittests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Unit Tests, Nightly Toolchain

on:
push:
branches: main
pull_request:

jobs:
unit-tests-nightly:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
name: Nightly Unit Tests
steps:
- name: Check out source repository
uses: actions/checkout@v4
- name: Install the latest nightly Rust toolchain
uses: dtolnay/rust-toolchain@nightly
- name: Run unit tests
run: cargo test

0 comments on commit b79a747

Please sign in to comment.