Skip to content

Commit 6250e26

Browse files
author
Aleksei Petrenko
committed
Github workflow
1 parent fcc11f0 commit 6250e26

File tree

2 files changed

+25
-19
lines changed

2 files changed

+25
-19
lines changed

.github/workflows/stale.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/test-ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
run-tests:
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
python-version: ['3.8', '3.9', '3.10']
11+
os: ['ubuntu-latest', 'macos-latest']
12+
runs-on: ${{ matrix.os }}
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: Set up Python
16+
uses: actions/setup-python@v3
17+
with:
18+
python-version: ${{ matrix.python-version }}
19+
- name: Install dependencies
20+
run: |
21+
pip install -e .[dev]
22+
- name: Run tests
23+
run: |
24+
# run all tests
25+
make test

0 commit comments

Comments
 (0)