Skip to content

Run Tests: branch test by fyellin #238

Run Tests: branch test by fyellin

Run Tests: branch test by fyellin #238

Workflow file for this run

name: Run Tests
run-name: "Run Tests: ${{ github.ref_type }} ${{ github.ref_name }} by ${{ github.triggering_actor }}"
on:
workflow_dispatch:
pull_request:
branches: [ main test]
push:
branches: [ main test]
schedule:
- cron: "20 11 * * 0"
jobs:
test:
name: Test cspyce
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Get swig on MacOS
if: matrix.os == 'macos-latest'
run: |
brew update
brew install swig
- name: Determine swig version
run: |
swig -version