Skip to content

Update release version #21

Update release version

Update release version #21

Workflow file for this run

name: Build
on: [ push ]
jobs:
main:
runs-on: ubuntu-20.04
strategy:
matrix:
include:
- python-version: 3.6
- python-version: 3.7
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
name: Setup Python ${{ matrix.python-version }}
with:
python-version: ${{ matrix.python-version }}
- name: Install and run SensorThingsAPI
uses: ./
- name: Install requirements 📦
run: |
pip3 install pygeoapi
pip3 install pytest
pip3 install requests
- name: run unit tests ⚙️
run: |
pytest test_sensorthings.py
- name: failed tests 🚩
if: ${{ failure() }}
run: |
pip3 list -v
docker ps