fix(dev): Remove conflicting .luarc file #573
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |