🛠️ CI: Fix typo in order ID - 'DDDD44' to 'DDD44' (#296) * Fix typo in order ID - 'DDDD44' to 'DDD44' PD: I'm in the process of making the Pyladies bot work again and this is really useful! Thanks! * Fix another typo (a8b10e6b7bd4f808cdf88632dec2ac1e641f9590) #755
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 |