Skip to content

Instantly share code, notes, and snippets.

@BarisSari
Created December 24, 2020 20:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BarisSari/5f7892f756609a55abe7a9b537f85d5e to your computer and use it in GitHub Desktop.
Save BarisSari/5f7892f756609a55abe7a9b537f85d5e to your computer and use it in GitHub Desktop.
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pre-commit
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run pre-commit hooks
run: |
pre-commit install
pre-commit run -a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment