Skip to content

Update category

Update category #179

Workflow file for this run

name: 'Build'
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.10']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
python setup.py install
- uses: zcong1993/setup-timezone@master
with:
timezone: Europe/Brussels
- run: python setup.py test
env:
DEMO_COMPANY_SECRET_KEY: ${{ secrets.DEMO_COMPANY_SECRET_KEY }}