Compare commits
3 commits
46ccfb045a
...
626a3fd42b
Author | SHA1 | Date | |
---|---|---|---|
626a3fd42b | |||
13bbc0b5d9 | |||
a637701ba3 |
1 changed files with 13 additions and 7 deletions
|
@ -9,15 +9,18 @@ jobs:
|
||||||
lint:
|
lint:
|
||||||
name: Lint Code (Ruff & Pylint)
|
name: Lint Code (Ruff & Pylint)
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container: www.coastalcommits.com/cswimr/actions:uv@sha256:211aaf7d9ac98087579ebf9fab87a9122f51b2697e3a3649ac9f4bd3b03b8e5d
|
container: catthehacker/ubuntu:act-latest@sha256:afbd9338d5d5c55290846befd921cbaabed061a7efc30a2d25d4c1f097f832f9
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||||
|
|
||||||
- name: Install python
|
- name: "Setup uv"
|
||||||
run: uv python install 3.11
|
uses: https://github.com/astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5
|
||||||
|
with:
|
||||||
|
version: "latest"
|
||||||
|
enable-cache: true
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: "Install dependencies"
|
||||||
run: uv sync
|
run: uv sync
|
||||||
|
|
||||||
- name: Analysing code with Ruff
|
- name: Analysing code with Ruff
|
||||||
|
@ -30,15 +33,18 @@ jobs:
|
||||||
docs:
|
docs:
|
||||||
name: Build Documentation (MkDocs)
|
name: Build Documentation (MkDocs)
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container: www.coastalcommits.com/cswimr/actions:docs@sha256:e405cd6b9b1182a570ddee32ed8dd1b2f899edc625d006c8b4b2f18c100e724f
|
container: catthehacker/ubuntu:act-latest@sha256:afbd9338d5d5c55290846befd921cbaabed061a7efc30a2d25d4c1f097f832f9
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Install python
|
- name: "Setup uv"
|
||||||
run: uv python install 3.11
|
uses: https://github.com/astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5
|
||||||
|
with:
|
||||||
|
version: "latest"
|
||||||
|
enable-cache: true
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: uv sync --no-dev --extra=documentation
|
run: uv sync --no-dev --extra=documentation
|
||||||
|
|
Loading…
Add table
Reference in a new issue