Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
topherinternational committed Dec 9, 2023
1 parent 00b41da commit b0e30ad
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: lint and test

on:
push:
branches: [ "main", "github-ci" ]
branches: [ "main" ]
pull_request:
branches: [ "main" ]

Expand All @@ -16,21 +16,21 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8"]
python-version: [ "3.7", "3.8" ]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install plugin
run: |
pip install .
- name: Test with black, pylint, pytest
run: |
make ci
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install plugin
run: |
pip install .
- name: Test with black, pylint, pytest
run: |
make ci

0 comments on commit b0e30ad

Please sign in to comment.