Skip to content

Commit

Permalink
chore(deps): bump the actions group with 4 updates (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored May 21, 2024
1 parent 2f3bab7 commit 9ce924f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Build SDist and wheel
run: pipx run build

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: dist/*

Expand All @@ -35,7 +35,7 @@ jobs:
id-token: write

steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist
Expand Down
15 changes: 12 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
FORCE_COLOR: 3

Expand All @@ -17,15 +21,20 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: hynek/build-and-inspect-python-package@v1
- uses: hynek/build-and-inspect-python-package@v2

test:
name: Run quick tests
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: wntrblm/nox@2023.04.22

- name: Setup uv
uses: yezz123/setup-uv@v4

- uses: wntrblm/nox@2024.04.15
with:
python-versions: "3.7, 3.8, 3.9, 3.10, 3.11, 3.12-dev"
python-versions: "3.7, 3.8, 3.9, 3.10, 3.11, 3.12"

- run: nox -s tests
2 changes: 2 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
import re
from pathlib import Path

nox.needs_version = ">=2024.3.2"
nox.options.sessions = ["lint", "tests"]
nox.options.default_venv_backend = "uv|virtualenv"

ALL_PYTHONS = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

Expand Down

0 comments on commit 9ce924f

Please sign in to comment.