Skip to content

Fix typo in test.yml CI action #1212

Fix typo in test.yml CI action

Fix typo in test.yml CI action #1212

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Install deps
run: sudo apt-get -qy update && sudo apt-get install -y && libssl-dev libssl1.1; sudo apt-get clean
- name: Install llvm-tools-preview
run: rustup component add llvm-tools-preview
- uses: Swatinem/rust-cache@v2
- name: Instasll cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate code coverage
env:
RUSTFLAGS: -D warnings -C target-cpu=native
RUST_BACKTRACE: full
run: cargo llvm-cov --verbose --lcov --output-path lcov.txt --locked
- uses: codecov/codecov-action@v4
attempt_limit: 6

Check failure on line 25 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 25, Col: 9): Unexpected value 'attempt_limit' .github/workflows/tests.yml (Line: 26, Col: 9): Unexpected value 'attempt_delay'
attempt_delay: 10000
with: |
files: ./lcov.txt # optional
fail_ci_if_error: #{{ github.event_name == 'pull_request' }}
verbose: true # optional (default = false)