Skip to content

Commit

Permalink
ross test with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ramintoosi committed Jun 14, 2023
1 parent 4c534ce commit 8c9fecd
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ross-test.yml
@@ -0,0 +1,31 @@
name: ROSS Test

on:
push:
branches-ignore:
- master
pull_request:
branches:
- v2

jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: '3.9'
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
run: |
conda env update --file environment.yml --name base
- name: Test with pytest
run: |
python -m pytest -q -rf --tb=short --cov-report term-missing --cov=./

0 comments on commit 8c9fecd

Please sign in to comment.