Skip to content

Use aware UTC datetimes internally #464

Use aware UTC datetimes internally

Use aware UTC datetimes internally #464

Workflow file for this run

name: Actions
on:
pull_request:
branches:
- main
push:
branches:
- main
concurrency:
group: '${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: πŸ“₯ Checkout the repository
uses: actions/checkout@v3
- name: πŸ›  Set up Python 3
uses: actions/[email protected]
id: python
with:
python-version: 3.x
- name: πŸ“¦ Install dependencies
run: make requirements
- name: πŸ–€ Lint with Black
run: make black-check
- name: πŸ”€ Lint with isort
run: make isort-check
test:
name: Test with Python ${{ matrix.python-version }}
needs: lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
steps:
- name: πŸ“₯ Checkout the repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: πŸ› οΈ Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: πŸ“¦ Install dependencies
run: make requirements
- name: πŸƒ Run tests
run: make test
- name: πŸ›  Build
run: make build
coverage:
name: Coverage
needs: test
runs-on: ubuntu-latest
steps:
- name: πŸ“₯ Checkout the repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: πŸ›  Set up Python 3.10
uses: actions/[email protected]
id: python
with:
python-version: "3.10"
- name: πŸ“¦ Install dependencies
run: make requirements
- name: πŸ“€ Upload coverage to Codecov
run: |
make coverage
curl -sfSL https://codecov.io/bash | bash -