Skip to content

Commit

Permalink
add test
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Dec 17, 2024
1 parent ac3bbcf commit f1465e3
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: CI

on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/setup-python@v5.1.0
with:
python-version: "3.9"

- uses: actions/checkout@v4

- name: Install
run: |
pip install pytest
- name: Run tests
run: |
pytest

0 comments on commit f1465e3

Please sign in to comment.