mirror of https://github.com/MISP/PyMISPGalaxies
new: GH action, bump templates
parent
0ed5e3981b
commit
e3de12043f
|
@ -0,0 +1,40 @@
|
||||||
|
name: Python application
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ main ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ main ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
python-version: [3.6, 3.7, 3.8, 3.9]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Set up Python ${{matrix.python-version}}
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: ${{matrix.python-version}}
|
||||||
|
|
||||||
|
- name: Initialize submodules
|
||||||
|
run: git submodule update --init --recursive
|
||||||
|
|
||||||
|
- name: Install Python dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip poetry
|
||||||
|
poetry install
|
||||||
|
|
||||||
|
- name: Test with nosetests
|
||||||
|
run: |
|
||||||
|
poetry run nosetests-3.4 --with-coverage --cover-package=pymispgalaxies -d
|
||||||
|
poetry run mypy .
|
||||||
|
|
||||||
|
- name: Upload coverage to Codecov
|
||||||
|
uses: codecov/codecov-action@v1
|
|
@ -1 +1 @@
|
||||||
Subproject commit 405d5f1fe98924174fa0819a6d2bc09950c4f196
|
Subproject commit 2d885e2a224df260e6b8c51709a41bc4ee9606e2
|
Loading…
Reference in New Issue