Skip to content

.github/workflows/install.yml #133

.github/workflows/install.yml

.github/workflows/install.yml #133

Workflow file for this run

# 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 }}