Skip to content

Custom datetime converter #1

Custom datetime converter

Custom datetime converter #1

Workflow file for this run

name: Build and test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Build and install package
run: |
python -m pip install .
- name: Download testdata
run: |
wget -i testfiles.txt -P data
- name: Unzip all testdata
run: |
unzip -d data -o 'data/*.zip'
- name: Run tests
run: |
pytest