Skip to content

Bugfix/allow setuppy to use cc package name (#25) #64

Bugfix/allow setuppy to use cc package name (#25)

Bugfix/allow setuppy to use cc package name (#25) #64

Workflow file for this run

---
name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
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: |
pip install pre-commit shfmt-py
- name: Lint
run: |-
pre-commit run --all-files