Skip to content

Update Baskerville sbatch and srun scripts #72

Update Baskerville sbatch and srun scripts

Update Baskerville sbatch and srun scripts #72

Workflow file for this run

on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
unit-tests-bask:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref || github.ref_name }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[bask]
- name: Run tests
run: |
python -m unittest discover -s tests
unit-tests-dawn:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref || github.ref_name }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dawn]
- name: Run tests
run: |
python -m unittest discover -s tests