Skip to content

Commit

Permalink
Merge pull request #204 from GoekeLab/add_ci
Browse files Browse the repository at this point in the history
add ci
  • Loading branch information
yuukiiwa authored Nov 24, 2023
2 parents 6765b1b + 9bb8cd3 commit fd2a83f
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: run-test

on:
push:
branches: [dev, master]
pull_request:
branches: [dev, master]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]

steps:
- uses: actions/checkout@v3
- name: Setup Python # Set Python version
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# Install pip and pytest
- name: Install dependencies
run: |
pip install .
- name: Install xpore-package
run: |
python -m pip install --upgrade pip
pip install pytest pytest-dependency
- name: Test with pytest
run: pytest --junitxml=junit/test-results-${{ matrix.python-version }}.xml
- name: Upload pytest test results
uses: actions/upload-artifact@v3
with:
name: pytest-results-${{ matrix.python-version }}
path: junit/test-results-${{ matrix.python-version }}.xml
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}

0 comments on commit fd2a83f

Please sign in to comment.