Skip to content

Bump actions/checkout from 2.7.0 to 6.0.1 #32

Bump actions/checkout from 2.7.0 to 6.0.1

Bump actions/checkout from 2.7.0 to 6.0.1 #32

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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@e9aba2c848f5ebd159c070c61ea2c4e2b122355e # v2.3.4
with:
python-version: ${{ matrix.version }}
- name: Install Dependencies
run: |
python setup.py install
- name: Run Tests
run: python setup.py test