Skip to content

Bump tj-actions/changed-files from 20 to 41 in /.github/workflows (#63) #233

Bump tj-actions/changed-files from 20 to 41 in /.github/workflows (#63)

Bump tj-actions/changed-files from 20 to 41 in /.github/workflows (#63) #233

Workflow file for this run

name: TOML
on:
push:
branches: [master, dev]
pull_request:
types: [review_requested, ready_for_review]
env:
CARGO_TERM_COLOR: always
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint:
name: "Lint"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Skip if unchanged
id: changed-files-specific
uses: tj-actions/changed-files@v41
with:
files: |
*.toml
*.tml
- name: Install Cargo TOML linter
if: steps.changed-files-specific.outputs.only_changed == 'true'
run: cargo install --git https://github.com/FuelLabs/cargo-toml-lint
- name: Lint Cargo.toml
if: steps.changed-files-specific.outputs.only_changed == 'true'
run: cargo-toml-lint Cargo.toml