From 67dde369c8e5474b5d210e24a73e36a6ae0e1beb Mon Sep 17 00:00:00 2001 From: Ishan Surana <121395061+ishan-surana@users.noreply.github.com> Date: Thu, 15 Aug 2024 14:12:18 +0530 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..fb9b360 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,26 @@ +name: Test testing + +on: + workflow_dispatch: + +permissions: + contents: read + +jobs: + deploy: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v3 + with: + python-version: '3.x' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install build + - name: Run tests + run: | + pytest tests/ --maxfail=1 --disable-warnings -q