Skip to content

Commit

Permalink
setup CICD with Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bc299 committed Sep 23, 2023
1 parent eaf7486 commit b1fc2d4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/pytest_runner.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Pytest with Pycodestyle

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Test with pytest
run:
pytest -v --pycodestyle

0 comments on commit b1fc2d4

Please sign in to comment.