mirror of
https://github.com/bsedin/matrix-webhook.git
synced 2026-04-09 11:25:40 +00:00
Let's try gitea
Some checks failed
Publish on Docker Hub / docker-hub (push) Failing after 5m57s
Test entrypoints / test-entrypoints (push) Failing after 7m6s
Lints / lint (push) Failing after 1m29s
Nix CI / Nix build on ${{ matrix.os }} (ubuntu) (push) Failing after 2m11s
Tests / tests (push) Failing after 2m24s
Nix CI / Nix build on ${{ matrix.os }} (macos) (push) Has been cancelled
Some checks failed
Publish on Docker Hub / docker-hub (push) Failing after 5m57s
Test entrypoints / test-entrypoints (push) Failing after 7m6s
Lints / lint (push) Failing after 1m29s
Nix CI / Nix build on ${{ matrix.os }} (ubuntu) (push) Failing after 2m11s
Tests / tests (push) Failing after 2m24s
Nix CI / Nix build on ${{ matrix.os }} (macos) (push) Has been cancelled
This commit is contained in:
17
.gitea/workflows/lint.yml
Normal file
17
.gitea/workflows/lint.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
name: Lints
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: pipx install poetry
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.10'
|
||||
cache: poetry
|
||||
- run: poetry install --with dev --no-interaction
|
||||
- run: poetry run ruff format .
|
||||
- run: poetry run ruff check .
|
||||
- run: poetry run safety check --ignore 70612
|
||||
- run: poetry run poetry check
|
||||
Reference in New Issue
Block a user