Skip to content

Commit

Permalink
ci: Add basic CI
Browse files Browse the repository at this point in the history
The actions does:
  * Run pre-commit hook
  * Run python unit tests

Signed-off-by: Chaitanya Tata <[email protected]>
  • Loading branch information
Chaitanya Tata authored and Chaitanya Tata committed Jan 8, 2024
1 parent 2493111 commit 754b214
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Python application

on:
push:
branches:
- main
pull_request:
branches:
- main
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: |
python -m pip install --upgrade pip
pip install pre-commit
pip install -e .[dev]
- name: Run pre-commit hooks
run: pre-commit run --all-files

- name: Run tests
run: |
python -m unittest discover

0 comments on commit 754b214

Please sign in to comment.