Skip to content

Commit

Permalink
Create build-test.yml (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
loli authored Jan 27, 2024
1 parent fcf172e commit df8ef12
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# This workflow will install Python dependencies, the package, and run the tests
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Build and test (wo graphcut)

on:
push:
branches: [ "master", "Release*" ]
pull_request:
branches: [ "master", "Release*" ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install with test dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[test]
- name: Test with pytest
run: |
pytest tests/features_/*
pytest tests/filter_/*
pytest tests/graphcut_/*
pytest tests/io_/*
pytest tests/metric_/*

0 comments on commit df8ef12

Please sign in to comment.