Print deployment URL on success execution #10
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
--- | |
name: CI | |
on: push | |
jobs: | |
run-linters: | |
runs-on: ubuntu-latest | |
container: python:3.12-alpine | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Run linter and formatter with ruff | |
run: | | |
pip install ruff | |
ruff format --check . | |
ruff check --output-format github . |