whitespace changes

This commit is contained in:
Jonathan Wren 2020-11-07 13:45:33 -08:00
parent 5f52f72a94
commit 17515cd42f
No known key found for this signature in database
GPG key ID: 43D5FF8722E7F68A

View file

@ -10,34 +10,33 @@ on:
branches: [ develop ] branches: [ develop ]
jobs: jobs:
runs-on: ${{ matrix.os }}
build: build:
runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
python-version: [3.7, 3.8, 3.9] python-version: [3.7, 3.8, 3.9]
os: [ ubuntu-latest, macos-latest, windows-latest ] os: [ubuntu-latest, macos-latest, windows-latest]
steps:
steps: - uses: actions/checkout@v2
- uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2
uses: actions/setup-python@v2 with:
with: python-version: ${{ matrix.python-version }}
python-version: ${{ matrix.python-version }} - uses: actions/cache@v2
- uses: actions/cache@v2 with:
with: path: |
path: | .venv
.venv ~/.cache/pip
~/.cache/pip key: ${{ runner.os }}-${{ hashFiles('poetry.lock') }}-${{ matrix.python-version }}
key: ${{ runner.os }}-${{ hashFiles('poetry.lock') }}-${{ matrix.python-version }} - name: Install dependencies
- name: Install dependencies run: |
run: | pip install poetry
pip install poetry poetry config --local virtualenvs.in-project true
poetry config --local virtualenvs.in-project true poetry install --remove-untracked
poetry install --remove-untracked - name: Test with pytest
- name: Test with pytest run: |
run: | poetry run pytest
poetry run pytest - name: Test with behave
- name: Test with behave run: |
run: | poetry run behave --no-skipped --format progress2
poetry run behave --no-skipped --format progress2