Bump nightly toolchain to 2024-10-17 #354
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: TOML | |
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 | |
jobs: | |
lint: | |
name: "Lint" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 2 | |
- 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 cargo-toml-lint --version 0.1.1 --locked | |
- name: Lint Cargo.toml | |
if: steps.changed-files-specific.outputs.only_changed == 'true' | |
run: cargo-toml-lint Cargo.toml |