Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadowXBoss696 committed Mar 15, 2024
1 parent bb41fcd commit 0d0d77e
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 44 deletions.
44 changes: 0 additions & 44 deletions .github/workflows/python-app.yml

This file was deleted.

35 changes: 35 additions & 0 deletions .github/workflows/sanity-suite.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# This workflow will install Python dependencies, run tests with a single version of Python

name: Sanity Suite

on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]

permissions:
contents: read

jobs:
sanity:
name: Perform Sanity
runs-on: ubuntu-latest

steps:
- name: Clone repository
uses: actions/checkout@v3

- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"

- name: Install required dependencies
run: |
python -m pip install --upgrade poetry
poetry install --with=test
- name: Perform Sanity Tests
run: |
poetry run pytest

0 comments on commit 0d0d77e

Please sign in to comment.