Skip to content

chore(deps): bump actions/download-artifact in the actions group #330

chore(deps): bump actions/download-artifact in the actions group

chore(deps): bump actions/download-artifact in the actions group #330

Workflow file for this run

name: Action
on:
push:
branches:
- "main"
- "**action**"
pull_request:
paths:
- ".github/workflows/action.yml"
- ".github/action_helper.py"
- "action.yml"
workflow_dispatch:
# allow manual runs on branches without a PR
env:
FORCE_COLOR: "1"
permissions: {}
jobs:
action-default-tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-22.04
- ubuntu-24.04
- ubuntu-24.04-arm
- windows-2022
- windows-2025
- macos-13
- macos-14
- macos-15
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: astral-sh/setup-uv@v6
- uses: ./
- run: nox --session github_actions_default_tests
action-all-tests:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-python@v5
with:
python-version: 3.12
- uses: ./
with:
python-versions: "pypy-2.7, pypy-3.8, pypy-3.9, pypy-3.10, pypy-3.11, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.14"
- run: nox --session github_actions_all_tests