add Order Model add DeliveryMethod /simple model/ #311
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: Run linting | |
on: | |
pull_request: | |
types: [opened, ready_for_review, synchronize, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python-version: ["3.11"] | |
if: github.event.pull_request.draft == false | |
steps: | |
- name: Cancel Previous Runs | |
if: "!endsWith(github.ref, '/master') && !endsWith(github.ref, '/dev')" | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/[email protected] | |
- name: Set up Python 3.11 | |
uses: actions/[email protected] | |
with: | |
python-version: "3.11" | |
architecture: "x64" | |
- name: "Install packages" | |
run: pip install pylama | |
- name: "Run Pylama" | |
run: pylama |