Skip to content

removing branch check (#73) #5

removing branch check (#73)

removing branch check (#73) #5

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: cpu-tests
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test-adept:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade black
black --line-length 120 --check adept
python -m pip install --upgrade pytest wheel
python -m pip install --upgrade -r requirements-cpu.txt
- name: Test with pytest
run: |
CPU_ONLY=True pytest tests/test_lpse2d tests/test_vlasov1d tests/test_vfp1d