From e5bdd5785819454097a8539d483a4a2eb8c71334 Mon Sep 17 00:00:00 2001 From: Nodoubtz <53144580+nodoubtz@users.noreply.github.com> Date: Fri, 16 May 2025 14:59:08 -0400 Subject: [PATCH] Add files via upload Signed-off-by: Nodoubtz <53144580+nodoubtz@users.noreply.github.com> --- ...workflows_ubuntu-latest-m-nodoubtz.yml.txt | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 github_workflows_ubuntu-latest-m-nodoubtz.yml.txt diff --git a/github_workflows_ubuntu-latest-m-nodoubtz.yml.txt b/github_workflows_ubuntu-latest-m-nodoubtz.yml.txt new file mode 100644 index 0000000..23657de --- /dev/null +++ b/github_workflows_ubuntu-latest-m-nodoubtz.yml.txt @@ -0,0 +1,33 @@ +name: Ubuntu Latest CI - m-nodoubtz + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + name: Build and Test on Ubuntu Latest (m-nodoubtz) + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.x' + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + + - name: Run tests + run: | + if [ -f pytest.ini ] || [ -f setup.cfg ] || [ -f tox.ini ]; then + pytest + else + echo "No test config found, skipping tests." + fi \ No newline at end of file