Skip to content

docs: R date and datetime sheets #104

docs: R date and datetime sheets

docs: R date and datetime sheets #104

Workflow file for this run

name: Test
on:
push:
paths:
- '**/test.yml'
- 'src/**'
- 'tests/**'
- 'poetry.lock'
- 'pyproject.toml'
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- uses: actions/cache@v3
with:
path: ~/.cache/pypoetry
key: ${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --with dev
- name: Run tests
run: poetry run pytest