Skip to content

Functionality to view events without authentication #36

Functionality to view events without authentication

Functionality to view events without authentication #36

Workflow file for this run

name: Run tests and code checks
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
env:
TESTING: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get update
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Apply isort
run: |
isort . -rc --check-only
- name: Apply pycodestyle
run: |
pycodestyle ./ --config=./.pycodestylerc