Skip to content

Update actions/setup-python digest to a309ff8 #305

Update actions/setup-python digest to a309ff8

Update actions/setup-python digest to a309ff8 #305

Workflow file for this run

name: Python CI
on:
push:
branches:
- main
pull_request:
branches:
- main
merge_group:
workflow_dispatch: {}
workflow_call: {} # to be invoked by pypipublish.yml
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.7', '3.8']
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
sudo apt-get update
sudo apt install libcurl4-openssl-dev
- name: Test with tox
run: tox