From 4d654f1d51f3935918897548b226473412515670 Mon Sep 17 00:00:00 2001 From: Luke R Date: Thu, 2 May 2024 12:07:17 -0700 Subject: [PATCH] testing --- .gitea/workflows/build-and-push.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build-and-push.yaml b/.gitea/workflows/build-and-push.yaml index 394c8076..985b18e9 100755 --- a/.gitea/workflows/build-and-push.yaml +++ b/.gitea/workflows/build-and-push.yaml @@ -6,11 +6,15 @@ jobs: Explore-Gitea-Actions: 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 }}." + # - 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 black and lint code + run: | + pip install black + 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