Skip to content

Commit

Permalink
Set up test and lint action
Browse files Browse the repository at this point in the history
  • Loading branch information
andywaltlova authored Aug 30, 2023
1 parent c6dde70 commit 1493f2a
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test & Lint

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["2.7"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Lint
run: make lint
- name: Test
run: make tests
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
verbose: true # optional (default = false)

0 comments on commit 1493f2a

Please sign in to comment.