Skip to content

Commit

Permalink
GitHub Actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tobywf committed Feb 19, 2020
1 parent eedea9c commit 71892a8
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: XML dataclasses CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
name: lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: requirements
run: |
python -m pip install --upgrade pip
pip install poetry pre-commit
- name: install
run: |
poetry install
- name: check
run: |
pre-commit run --all-files
poetry run ./lint "CHECK"

0 comments on commit 71892a8

Please sign in to comment.