Skip to content

~ ci path ignores

~ ci path ignores #43

Workflow file for this run

name: Evaluate

Check failure on line 1 in .github/workflows/eval.yaml

View workflow run for this annotation

GitHub Actions / Evaluate

Invalid workflow file

The workflow is not valid. .github/workflows/eval.yaml: Anchors are not currently supported. Remove the anchor 'ign'
on:
pull_request:
branches: ["*"]
paths-ignore: &ign
- 'docs/**'
- '**/*.md'
push:
branches: ["main", "dev"]
paths-ignore: *ign
jobs:
check:
runs-on: ubuntu-latest
permissions:
id-token: "write"
contents: "read"
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- uses: DeterminateSystems/flake-checker-action@main
- name: Build vaultix cli
run: |
nix build .
- name: Run cargo check
run: |
nix develop -c cargo check
- name: Run cargo test
run: |
nix develop -c cargo test