Skip to content

Bump actions/setup-python from 2.3.4 to 6.1.0 #31

Bump actions/setup-python from 2.3.4 to 6.1.0

Bump actions/setup-python from 2.3.4 to 6.1.0 #31

Workflow file for this run

name: CI
on:
push:
jobs:
build:
runs-on: ubuntu-latest
name: Python ${{ matrix.version }}
strategy:
matrix:
version: [2.7, 3.6, 3.8, 3.9]
steps:
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: ${{ matrix.version }}
- name: Install Dependencies
run: |
python setup.py install
- name: Run Tests
run: python setup.py test