Skip to content

Build by PrinceWalnut #72

Build by PrinceWalnut

Build by PrinceWalnut #72

Workflow file for this run

name: Build
run-name: Build by ${{ github.actor }}
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.10']
os: [ubuntu-latest]
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Build with tox
run: |
python -m pip install --upgrade pip
pip install tox
pip install tox-conda
tox -e dev_build
- name: Run tests with tox + pytest
run: |
tox