Skip to content

Manage CTFd configuration from ctfcli #279

Manage CTFd configuration from ctfcli

Manage CTFd configuration from ctfcli #279

Workflow file for this run

---
name: Linting
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
name: Linting
steps:
- uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Lint
run: poetry run make lint