Skip to content

build(deps): bump actions/download-artifact from 7.0.0 to 8.0.0 in the actions group #689

build(deps): bump actions/download-artifact from 7.0.0 to 8.0.0 in the actions group

build(deps): bump actions/download-artifact from 7.0.0 to 8.0.0 in the actions group #689

Workflow file for this run

name: Unit tests
on:
push:
branches:
- main
pull_request:
permissions: {}
jobs:
test-ubuntu-macos:
strategy:
matrix:
platform:
- macos-latest
- ubuntu-latest
python:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "pypy"
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Install the latest version of uv and set the python version
uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # v7.3.0
with:
enable-cache: true
cache-dependency-glob: pyproject.toml
- name: Install python
run: uv python install ${{ matrix.python }}
- name: test
run: make test
test-windows:
strategy:
matrix:
windows:
- 'win64'
python:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
runs-on: windows-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Install the latest version of uv and set the python version
uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # v7.3.0
with:
enable-cache: true
cache-dependency-glob: pyproject.toml
# Split Python installation from virtual environment creation.
# setup-uv@v5's python-version parameter automatically creates and activates a venv, which conflicts with our
# Makefile's venv management.
# https://github.com/astral-sh/setup-uv/pull/194
- name: Install python
run: uv python install ${{ matrix.python }}
- uses: dawidd6/action-download-artifact@5c98f0b039f36ef966fdb7dfa9779262785ecb05 # v14
with:
repo: pyca/infra
workflow: build-windows-openssl.yml
branch: main
workflow_conclusion: success
name: "openssl-${{ matrix.windows }}"
path: "C:/openssl-${{ matrix.windows }}/"
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Configure
shell: bash
run: |
echo "OPENSSL_DIR=C:/openssl-${{ matrix.windows }}" >> $GITHUB_ENV
echo "OPENSSL_NO_VENDOR=1" >> $GITHUB_ENV
- name: test
run: make test
shell: bash
all-tests-pass:
if: always()
needs: [test-ubuntu-macos, test-windows]
runs-on: ubuntu-latest
steps:
- name: check test jobs
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
with:
jobs: ${{ toJSON(needs) }}