From 8e7fe66c3283d7b50dd58ae867a33401b8a99add Mon Sep 17 00:00:00 2001 From: n Date: Tue, 13 Feb 2024 21:44:08 +0100 Subject: [PATCH] add Gitea CI --- .gitea/workflows/lint.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitea/workflows/lint.yml diff --git a/.gitea/workflows/lint.yml b/.gitea/workflows/lint.yml new file mode 100644 index 0000000..87af5c1 --- /dev/null +++ b/.gitea/workflows/lint.yml @@ -0,0 +1,23 @@ +name: lint +run-name: lint is launched by ${{ github.actor }} +on: [push] +jobs: + check: + runs-on: ubuntu-latest + name: lint + steps: + - run: echo "🎉 The job was automatically triggered by a ${{ github.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 ${{ github.ref }} and your repository is ${{ github.repository }}." + - name: Check out repository code + uses: actions/checkout@v4 + - name: Create Python virtualenv + run: | + export PIP_CACHE_DIR=/tmp + python -m venv . + source bin/activate + pip install pylint-venv pylint + - name: Lint + run: ./bin/pylint -d E0401 *.py + - run: echo "🍏 This job's status is ${{ job.status }}." +