From 78129d6ecc0ccc8adea238659d5bcd4709485031 Mon Sep 17 00:00:00 2001 From: Rodrigo Ceccato Date: Wed, 7 Aug 2024 13:27:00 -0300 Subject: [PATCH] Add CI lint --- .github/workflows/python-test.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/python-test.yml diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml new file mode 100644 index 0000000..da1bf73 --- /dev/null +++ b/.github/workflows/python-test.yml @@ -0,0 +1,30 @@ +name: Python package + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + python-version: ["3.11"] + + 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 + python -m pip install ".[dev]" + - name: Lint with black + run: | + task lint \ No newline at end of file