Skip to content

use commit hashes instead of tags for action versions #8

use commit hashes instead of tags for action versions

use commit hashes instead of tags for action versions #8

Workflow file for this run

---
name: test
on:
push:
pull_request:
schedule:
- cron: '0 9 9 * *'
defaults:
run:
shell: bash
jobs:
test-tox:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, 3.10]
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: |
python -m pip install -U pip
python -m pip install -U setuptools
make requirements
- name: Test with Tox
run: tox