Skip to content

Fix citation footnotes #101

Fix citation footnotes

Fix citation footnotes #101

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build-test:
runs-on: ubuntu-latest
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
BUILD_PROFILE: debug
steps:
- uses: actions/checkout@v4
- name: Setup Rust
uses: leynos/shared-actions/.github/actions/setup-rust@v1.1.0
- name: Format
run: make check-fmt
- name: Lint
run: make lint
- name: Test
run: make test
- name: Install cargo-tarpaulin
run: cargo install cargo-tarpaulin
- name: Run coverage
run: cargo tarpaulin --out lcov
- name: Upload coverage data to CodeScene
if: ${{ secrets.CS_ACCESS_TOKEN }}

Check failure on line 32 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 32, Col: 13): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.CS_ACCESS_TOKEN
uses: leynos/shared-actions/.github/actions/upload-codescene-coverage@v1.1.0
with:
format: lcov
access-token: ${{ secrets.CS_ACCESS_TOKEN }}
installer-checksum: ${{ vars.CODESCENE_CLI_SHA256 }}