Skip to content

Commit

Permalink
Add CI configuration for GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Nov 19, 2021
1 parent 34191bf commit 8d117d2
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/tests.yml
@@ -0,0 +1,26 @@
name: Tests

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, '3.10']

steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Run tests
run: make test
1 change: 1 addition & 0 deletions CHANGES.rst
Expand Up @@ -10,6 +10,7 @@ in progress
- Allow relative timestamps / time ranges also for ``start`` and ``stop``
parameters. Accepted are humanized values like outlined above (``2m30s``),
combined with, e.g., ``stop=start+2m30s`` or ``start=-1h, stop=now``.
- Add CI configuration for GHA


2021-11-17 0.6.0
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -43,6 +43,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU Affero General Public License v3",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Development Status :: 4 - Beta",
Expand Down

0 comments on commit 8d117d2

Please sign in to comment.