Skip to content

Commit

Permalink
[CI] Create operability.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-laurent authored Nov 14, 2023
1 parent 1fec803 commit 3096cc3
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/operability.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Pytest

on:
push:
branches:
- 'main'
paths-ignore:
# Do not run if only the documentation has been changed
- 'docs/**'
- '**/*.md'
pull_request:
paths-ignore:
# Do not run if only the documentation has been changed
- 'docs/**'
- '**/*.md'

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]
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 dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt

0 comments on commit 3096cc3

Please sign in to comment.