From a09abf4c9d65f78f52eb71e7f303f13e3e50b258 Mon Sep 17 00:00:00 2001 From: Jennifer Pollack Date: Wed, 21 Feb 2024 14:32:32 +0100 Subject: [PATCH] Added workflow for manual trigger --- .github/workflows/ci_manual.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/ci_manual.yml diff --git a/.github/workflows/ci_manual.yml b/.github/workflows/ci_manual.yml new file mode 100644 index 00000000..de5fa457 --- /dev/null +++ b/.github/workflows/ci_manual.yml @@ -0,0 +1,25 @@ +# This workflow will install Python dependencies, run tests and lint with a single version of Python +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python + +name: CI_manual + +on: [workflow_dispatch] + +jobs: + test-full: + runs-on: [ubuntu-latest] + + steps: + - name: + uses: actions/checkout@v3 + + - name: Set up Python 3.10.5 + uses: actions/setup-python@v3 + with: + python-version: "3.10.5" + + - name: Install dependencies + run: python -m pip install ".[test]" + + - name: Test with pytest + run: python -m pytest