11 lines
267 B
YAML
Executable File
11 lines
267 B
YAML
Executable File
name: Build and Push
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
on: [push]
|
|
|
|
jobs:
|
|
lint-python:
|
|
runs-on: ubuntu-22.04
|
|
uses: https://github.com/actions/checkout@v4
|
|
run: |
|
|
python3 -m pip install black
|
|
black --fast --check . |