Skip to content

update badge url in README #89

update badge url in README

update badge url in README #89

Workflow file for this run

name: later
on: [push, pull_request]
jobs:
build:
name: test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: update pip
run: |
python -m pip install --upgrade pip
- name: pip install later
run: |
python -m pip install -e .[dev]
- name: Run Unitests via coverage
run: |
coverage run -m later.tests.base
- name: Show coverage
run: |
coverage report