From 31cd7dc6c328eb7cfac145abd2cc0fc40dd025d3 Mon Sep 17 00:00:00 2001 From: Michael Hirsch Date: Mon, 18 Oct 2021 10:52:06 -0400 Subject: [PATCH] ci: python 3.7, 3.10 --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a841091..894eeef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,16 +4,22 @@ on: push: paths: - "**.py" + - ".github/workflows/ci.yml" jobs: linux: runs-on: ubuntu-latest + strategy: + matrix: + python-version: [ '3.7', '3.10' ] + name: Lint Python ${{ matrix.python-version }} + steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: - python-version: '3.x' + python-version: ${{ matrix.python-version }} - run: pip install .[lint]