Skip to content

Commit

Permalink
UTC, Naive funtionality without chrono
Browse files Browse the repository at this point in the history
  • Loading branch information
ariebovenberg committed Nov 30, 2023
1 parent d48dabd commit 6808dca
Show file tree
Hide file tree
Showing 30 changed files with 2,536 additions and 1,527 deletions.
119 changes: 0 additions & 119 deletions .github/workflows/CI.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build

on:
pull_request:
branches:
- "**"
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install "tox<5" tox-gh-actions "poetry<1.8"
- name: Test with tox
run: tox
Loading

0 comments on commit 6808dca

Please sign in to comment.