Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

Merge pull request #33 from MarketSquare/improved_oas_3.1_support #80

Merge pull request #33 from MarketSquare/improved_oas_3.1_support

Merge pull request #33 from MarketSquare/improved_oas_3.1_support #80

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: false
virtualenvs-path: ~/.virtualenvs
installer-parallel: true
- name: Cache poetry virtualenv
uses: actions/cache@v1
id: cache
with:
path: ~/.virtualenvs
key: poetry-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
poetry-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: poetry install
if: steps.cache.outputs.cache-hit != 'true'
- name: Run tests
run: |
poetry run invoke testserver &
poetry run invoke tests