🛠️ CI: Add feedback channel (#234) (e3d1d9caffde4ccec180da9072be1c55ff5e5d56) #685
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: EuroPython Discord Bot CI | |
run-name: "🛠️ CI: ${{ github.event.head_commit.message }} (${{ github.sha }})" | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
lint: | |
name: Lint and Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v6 | |
with: | |
version: "0.7.3" | |
- name: Install Python | |
run: uv python install | |
- name: Install dependencies | |
run: uv sync --dev | |
- name: Run code checks | |
run: uv run --dev pre-commit run --all-files |