Install #123
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
name: Install | |
on: | |
schedule: | |
- cron: 13 12 * * 1,4 | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
install-latest-cli-msrv: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install oldest supported Rust version | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: "1.66" | |
override: true | |
components: rustc | |
- name: Install | |
run: cargo install zsplit-cli | |
install-latest-cli: | |
runs-on: ubuntu-latest | |
needs: [install-latest-cli-msrv] | |
if: ${{ always() && needs.install-latest-cli-msrv.result == 'failure' }} | |
steps: | |
- name: Install oldest supported Rust version | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: "stable" | |
override: true | |
components: rustc | |
- name: Install | |
run: cargo install zsplit-cli |