.github/workflows/install.yml #149
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Check install from crates.io works, both with and without --locked. | |
# | |
# This is mostly to check for loose dependencies that might have broken | |
# the build after it was released. | |
on: | |
push: | |
paths: | |
- '.github/workflows/install.yml' | |
schedule: | |
- cron: "17 0 * * 1" | |
jobs: | |
cargo-install: | |
strategy: | |
matrix: | |
locked: ["", "--locked"] | |
# TODO: Enable s3 when it's released | |
features: [""] | |
runs-on: ubuntu-latest | |
steps: | |
- name: cargo-install | |
run: | | |
cargo install cargo-mutants ${{ matrix.locked }} --features=${{ matrix.features }} |