Skip to content

flapping.cephfs: Add smb2.create.quota-fake-file as knownfail #15

flapping.cephfs: Add smb2.create.quota-fake-file as knownfail

flapping.cephfs: Add smb2.create.quota-fake-file as knownfail #15

Workflow file for this run

---
name: "SIT test-cases CI"
on: [push, pull_request]
jobs:
check:
name: Run python code checkers
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Update
run: sudo apt-get update
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: python -m pip install tox
- name: Check code with flake8
run: make check-flake8
- name: Check code with black
run: make check-black
- name: Check code with mypy
run: make check-mypy