dragon-bot/.gitea/workflows/build-and-push.yaml
Luke R 72e7e5c0b0
Some checks failed
Build and push / Build-And-Push-Container (push) Failing after 5s
more ci/cd testing
2024-05-02 12:09:47 -07:00

26 lines
1.1 KiB
YAML
Executable File

name: Build and push
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Build-And-Push-Container:
runs-on: ubuntu-latest
steps:
# - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
# - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
# - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
uses: actions/checkout@v4
- name: install UV
run: |
pip install uv --quiet
- name: install black and lint code
run: |
uv pip install black --quiet
black app --check --fast
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."