Compare commits

...

3 commits

Author SHA1 Message Date
626a3fd42b
chore(deps): pin dependencies
Some checks failed
Actions / Build Documentation (MkDocs) (pull_request) Failing after 0s
Actions / Lint Code (Ruff & Pylint) (pull_request) Failing after 1m0s
2025-03-18 08:15:24 +00:00
13bbc0b5d9
install dependencies in a separate step
Some checks failed
Actions / Build Documentation (MkDocs) (push) Failing after 1s
Actions / Lint Code (Ruff & Pylint) (push) Failing after 51s
2025-03-18 03:11:55 -05:00
a637701ba3
fix actions workflow & use the uv action to setup uv
Some checks failed
Actions / Build Documentation (MkDocs) (push) Failing after 0s
Actions / Lint Code (Ruff & Pylint) (push) Failing after 52s
2025-03-18 03:10:43 -05:00

View file

@ -9,15 +9,18 @@ jobs:
lint:
name: Lint Code (Ruff & Pylint)
runs-on: docker
container: www.coastalcommits.com/cswimr/actions:uv@sha256:211aaf7d9ac98087579ebf9fab87a9122f51b2697e3a3649ac9f4bd3b03b8e5d
container: catthehacker/ubuntu:act-latest@sha256:afbd9338d5d5c55290846befd921cbaabed061a7efc30a2d25d4c1f097f832f9
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install python
run: uv python install 3.11
- name: "Setup uv"
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
- name: Analysing code with Ruff
@ -30,15 +33,18 @@ jobs:
docs:
name: Build Documentation (MkDocs)
runs-on: docker
container: www.coastalcommits.com/cswimr/actions:docs@sha256:e405cd6b9b1182a570ddee32ed8dd1b2f899edc625d006c8b4b2f18c100e724f
container: catthehacker/ubuntu:act-latest@sha256:afbd9338d5d5c55290846befd921cbaabed061a7efc30a2d25d4c1f097f832f9
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0
- name: Install python
run: uv python install 3.11
- name: "Setup uv"
uses: https://github.com/astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5
with:
version: "latest"
enable-cache: true
- name: Install dependencies
run: uv sync --no-dev --extra=documentation