⬆️ cargo update
#158
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: Validation | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
validate-manifest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v25 | |
with: | |
nix_path: "nixpkgs=channel:release-23.05" | |
- name: Validate workflow files | |
run: | | |
nix develop .#validate -c action-validator .github/workflows/audit.yml | |
nix develop .#validate -c action-validator .github/workflows/rust.yml | |
nix develop .#validate -c action-validator .github/workflows/release.yml | |
nix develop .#validate -c action-validator .github/workflows/validate.yml | |
nix develop .#validate -c action-validator .github/workflows/flake-update.yml | |
- name: Validate codecov.yml | |
run: | | |
curl -f --data-binary @codecov.yml https://codecov.io/validate | |
check-spell: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: streetsidesoftware/cspell-action@v5 | |
with: | |
inline: 'error' | |
incremental_files_only: false |