Skip to content

Add compatibility with SeaweedFS #91

Add compatibility with SeaweedFS

Add compatibility with SeaweedFS #91

Workflow file for this run

name: main
on:
- pull_request
- push
jobs:
build:
strategy:
fail-fast: false
matrix:
python_version:
- 3.9
os:
- ubuntu-22.04
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-python@v4
with:
python-version: {{ $matrix.python_version }}

Check failure on line 20 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / main

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 20, Col: 27): A mapping was not expected
- name: Checkout code
uses: actions/checkout@v4
- name: Install poetry
run: |
pip3 install poetry
- name: Install dependencies
run: poetry install --no-interaction --no-root
- name: Run checks
run: poetry run make check