Skip to content

chore(docs): update README.md #581

chore(docs): update README.md

chore(docs): update README.md #581

Workflow file for this run

name: Run All Checks
on:
push:
branches: [master, v3]
pull_request:
jobs:
check-lua:
name: Run Checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v27
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Run lints
run: nix develop .#ci --command just lint
- name: Check types
run: nix develop .#ci --command just types
- name: Run tests
run: nix develop .#ci --command just test