Skip to content

Bump actions/setup-python from 6.0.0 to 6.1.0 #384

Bump actions/setup-python from 6.0.0 to 6.1.0

Bump actions/setup-python from 6.0.0 to 6.1.0 #384

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
include:
- name: Tests
command: bin/tests
- name: Lint
command: bin/lint
runs-on: ubuntu-latest
name: ${{ matrix.name }}
steps:
- name: Check out repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version-file: '.python-version'
cache: 'pip'
cache-dependency-path: |
requirements.txt
requirements/*.txt
- name: Install Python dependencies
run: |
pip install -U pip setuptools wheel
pip install -r requirements.txt --no-deps
- name: Run ${{ matrix.name }}
run: ${{ matrix.command }}