update ci file
Browse files- .github/workflows/ci-tests.yml +0 -34
- .github/workflows/ci.yml +1 -1
.github/workflows/ci-tests.yml
DELETED
@@ -1,34 +0,0 @@
|
|
1 |
-
name: CI tests
|
2 |
-
|
3 |
-
on:
|
4 |
-
pull_request:
|
5 |
-
branches: [ master ]
|
6 |
-
paths-ignore:
|
7 |
-
- '**/README.md'
|
8 |
-
- 'docs/**'
|
9 |
-
|
10 |
-
jobs:
|
11 |
-
ci:
|
12 |
-
runs-on: ubuntu-latest
|
13 |
-
|
14 |
-
strategy:
|
15 |
-
matrix:
|
16 |
-
python: [3.7, 3.8, 3.9, 3.10, 3.11]
|
17 |
-
|
18 |
-
steps:
|
19 |
-
- name: Checkout repo
|
20 |
-
uses: actions/checkout@v2
|
21 |
-
|
22 |
-
- name: Setup python
|
23 |
-
uses: actions/setup-python@v2
|
24 |
-
with:
|
25 |
-
python-version: ${{ matrix.python }}
|
26 |
-
|
27 |
-
- name: Upgrade pip
|
28 |
-
run: pip install --upgrade pip pipenv
|
29 |
-
|
30 |
-
- name: Install pipenv
|
31 |
-
run: pipenv install --dev --skip-lock --python ${{ matrix.python }}
|
32 |
-
|
33 |
-
- name: Run make ci
|
34 |
-
run: make ci
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.github/workflows/ci.yml
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
name: CI
|
2 |
|
3 |
on:
|
4 |
pull_request:
|
|
|
1 |
+
name: CI tests
|
2 |
|
3 |
on:
|
4 |
pull_request:
|