Skip to content

Commit d78fbc8

Browse files
committed
Add GitHub workflow
1 parent fb39b41 commit d78fbc8

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Build and Test
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
python-version: ["3.10", "3.11", "3.12"]
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Set up Python ${{ matrix.python-version }}
20+
uses: actions/setup-python@v4
21+
with:
22+
python-version: ${{ matrix.python-version }}
23+
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip
27+
pip install -r requirements.txt
28+
pip install -r requirements-tests.txt
29+
pip install -r requirements-dev.txt
30+
31+
- name: Run tests with coverage
32+
run: |
33+
pytest --cov=monic tests/
34+
35+
- name: Build package
36+
run: |
37+
pip install build
38+
python -m build
39+
40+
- name: Upload coverage reports to Codecov
41+
uses: codecov/codecov-action@v3
42+
env:
43+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)