feat: added incoming requests verification #90
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python application | |
on: push | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository and submodules | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Build bot image | |
run: docker build -t next-feature-bot . | |
lint: | |
name: Lint | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository and submodules | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Setup | |
uses: ExpressApp/[email protected] | |
with: | |
python-version: "3.10" | |
poetry-version: "1.3.2" | |
- name: Run lint | |
run: | | |
source .venv/bin/activate | |
./scripts/lint |