Skip to content

Commit

Permalink
Merge pull request #1 from filanov/doca-build
Browse files Browse the repository at this point in the history
Add flask to git actions
  • Loading branch information
filanov authored Jul 7, 2024
2 parents 68daef8 + a069196 commit d69ff91
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/flake.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: flake
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
pip install -r requirements.txt
pip install nose avocado avocado-framework
- name: run flake8
run: |
flake8 sos

0 comments on commit d69ff91

Please sign in to comment.