Skip to content

Create activation key flow #1420

Create activation key flow

Create activation key flow #1420

Workflow file for this run

name: Lint checks
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: "3.9"
cache: 'pipenv'
- name: Install pipenv
run: pip install pipenv
- name: Install dependencies
run: make install
- name: Run linter
run: make lint