refactor: make entity_mentions
its own package
#213
Workflow file for this run
This file contains 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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
name: Ruff | |
jobs: | |
check-ruff: | |
if: github.repository == 'ghostty-org/discord-bot' | |
runs-on: namespace-profile-ghostty-sm | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Nix | |
uses: cachix/install-nix-action@V27 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Lint code | |
run: | | |
nix develop -c ruff check | |
nix develop -c ruff format --check |