Skip to content

Update comments in date.py #84

Update comments in date.py

Update comments in date.py #84

Workflow file for this run

name: Django CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Set up Poetry
run: |
pip install --user poetry
- name: Set up Coveralls
run: |
pip install coveralls pyyaml
- name: Install Dependencies
run: |
script/bootstrap
- name: Run Tests
run: |
script/cibuild
- name: Upload coverage report
run: |
coveralls --service=github