From 478d3214bebf129fe7fbc9d7cf9dbe075beddd77 Mon Sep 17 00:00:00 2001 From: Sylvain Leclerc Date: Fri, 9 Feb 2024 15:26:49 +0100 Subject: [PATCH] [WIP] CI workflow Signed-off-by: Sylvain Leclerc --- .github/workflows/ci.yml | 49 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..93887144 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,49 @@ +name: CI +on: + push: + branches: + - "**" + +jobs: + ci: + runs-on: ubuntu-20.04 + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: 3.11 + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt -r requirements-dev.txt + + - name: Check imports sort order + uses: isort/isort-action@v1 + with: + sort-paths: src, tests + requirementsFiles: "requirements.txt requirements-dev.txt" + + - name: Check formatting + uses: psf/black@stable + with: + # Version of Black should match the versions set in `requirements-dev.txt` + version: "~=23.7.0" + options: --check --diff + + - name: Check typing + run: | + python -m mypy + + - name: Test + run: | + pytest --cov antarest --cov-report xml + + - name: Archive code coverage results + uses: actions/upload-artifact@v3 + with: + name: python-code-coverage-report + path: coverage.xml