Skip to content

Commit

Permalink
Create unit_tests.yml (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
CSY-ModelCloud authored Nov 29, 2024
1 parent 044ebc0 commit b96cd33
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Unit tests

on:
repository_dispatch:
workflow_dispatch:

jobs:
build:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: 3.11
cache: 'pip'

- name: run test
run: |
python3 test.py

0 comments on commit b96cd33

Please sign in to comment.