Skip to content

πŸ› fix yaml syntax error in values.yaml (wrong auto-format) #10

πŸ› fix yaml syntax error in values.yaml (wrong auto-format)

πŸ› fix yaml syntax error in values.yaml (wrong auto-format) #10

Workflow file for this run

---
name: ci
on:
push:
workflow_dispatch:
permissions:
contents: read
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
steps:
- uses: actions/checkout@v4
- uses: jdx/rtx-action@v1
- name: Cache cargo registry
uses: actions/cache@v3
continue-on-error: false
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- run: just check
- run: just lint_rust # megalinter is running via an other workflow
- run: just test