Skip to content

test

test #8

Workflow file for this run

name: test
on:
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
test:
name: Test sweph on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Setup Msbuild
if: ${{ matrix.os == 'windows-latest' }}
uses: microsoft/[email protected]
- run: npm install