mirror of
https://github.com/dolphin-emu/analytics-ingest.git
synced 2026-01-31 01:15:21 +01:00
50 lines
1.1 KiB
YAML
50 lines
1.1 KiB
YAML
name: Run tests
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
# Inspiration taken from https://jacobian.org/til/github-actions-poetry/
|
|
run-tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Python 3.10
|
|
uses: actions/setup-python@v3
|
|
with:
|
|
python-version: "3.10"
|
|
|
|
- name: Cache Poetry install
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.local
|
|
key: poetry-1.1.14-0
|
|
|
|
- uses: snok/install-poetry@v1
|
|
with:
|
|
version: 1.1.14
|
|
virtualenvs-create: true
|
|
virtualenvs-in-project: true
|
|
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: .venv
|
|
key: pydeps-${{ hashFiles('**/poetry.lock') }}
|
|
|
|
- name: Install dependencies (if uncached)
|
|
run: poetry install --no-interaction --no-root
|
|
if: steps.cache-deps.outputs.cache-hit != 'true'
|
|
|
|
- name: Install analytics-ingest
|
|
run: poetry install --no-interaction
|
|
|
|
- name: Check coding style
|
|
run: poetry run black --check .
|