Skip to content

fix: filter out env-help from listed scripts (#3) #6

fix: filter out env-help from listed scripts (#3)

fix: filter out env-help from listed scripts (#3) #6

Workflow file for this run

---
name: CI
on:
pull_request:
branches: [ "*" ]
push:
branches: [ "main" ]
schedule:
- cron: '0 06 * * MON'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Lint Nix code
run: nix develop --impure -c alejandra -c .
...