Skip to content

Commit

Permalink
add install workflow to check.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ntBre committed Aug 9, 2024
1 parent b645dd3 commit cffd0a5
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,19 @@ jobs:
run: cargo doc --no-deps --all-features
env:
RUSTDOCFLAGS: --cfg docsrs
install:
strategy:
matrix:
toolchain: [nightly]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install ${{ matrix.toolchain }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- name: make install
run: make install

0 comments on commit cffd0a5

Please sign in to comment.