Skip to content

Bump dessant/lock-threads from 3.0.0 to 4.0.1 #724

Bump dessant/lock-threads from 3.0.0 to 4.0.1

Bump dessant/lock-threads from 3.0.0 to 4.0.1 #724

Workflow file for this run

name: Tests
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev", "pypy-3.8", "pypy-3.9"]
os: [ubuntu-22.04, macOS-latest, windows-latest]
include:
# pypy-3.7 on Windows and Mac OS currently fails trying to compile
# cryptography. Moving pypy-3.7 to only test linux.
- python-version: pypy-3.7
os: ubuntu-latest
steps:
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@e9aba2c848f5ebd159c070c61ea2c4e2b122355e # v2.3.4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make
- name: Run tests
run: |
make ci