Skip to content

Commit

Permalink
Test pipeline configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
EltonCN committed Oct 11, 2024
1 parent 45b79c6 commit a61f87e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 40 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/pipeline-windows.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: evolvepy CI/CD
name: Test
on:
push:
branches: [ develop, main ]
Expand All @@ -8,27 +8,26 @@ on:
jobs:
build:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.7","3.8", "3.9"]
os: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}

uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install pytest
if [ -f setup.cfg ]; then python3 -m pip install . ; fi
python3 -m pip install .[tests]
- name: Test with pytest
- name: Tests
run: |
pytest
shell: bash

0 comments on commit a61f87e

Please sign in to comment.