Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

chore(deps-dev): bump poethepoet from 0.24.0 to 0.24.1 #611

chore(deps-dev): bump poethepoet from 0.24.0 to 0.24.1

chore(deps-dev): bump poethepoet from 0.24.0 to 0.24.1 #611

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
lint:
strategy:
fail-fast: false
matrix:
python-version: [3.10.6]
poetry-version: [1.3.2]
os: [ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
uses: snok/install-poetry@v1.3
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}-${{ matrix.python-version }}
- name: Install dependencies
run: poetry install
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
- name: lint
run: |
source .venv/bin/activate
poetry run poe lint
test:
strategy:
fail-fast: false
matrix:
python-version: [3.10.6]
poetry-version: [1.3.2]
os: [ubuntu-22.04]
runs-on: ${{ matrix.os }}
env:
TILE38_URI: redis://localhost:9851
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
uses: snok/install-poetry@v1.3
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}-${{ matrix.python-version }}
- name: Install dependencies
run: poetry install
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
- name: start tile38
run: docker-compose up -d tile38
- name: Test
run: |
source .venv/bin/activate
poetry run poe test