Bump tj-actions/changed-files from 20 to 41 in /.github/workflows (#68) #321
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: Smokescreen | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_BACKTRACE: 1 | |
jobs: | |
install: | |
name: "Cargo install" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Cargo install | |
run: cargo install --path . --locked -q | |
- name: CLI works | |
run: zepter --version && zepter --help | |
- name: Cargo install (no-default-features) | |
run: cargo install --path . --locked -q --no-default-features | |
- name: CLI works (no-default-features) | |
run: zepter --version && zepter --help |