Skip to content

Commit

Permalink
Merge pull request #6 from jat255/enable_actions
Browse files Browse the repository at this point in the history
add install tests
  • Loading branch information
jat255 authored Oct 31, 2024
2 parents 281cede + 91ba6f5 commit e5d08aa
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI
on: [push, pull_request]

jobs:
install:
name: "Test install: (${{ matrix.python-version }}, ${{ matrix.os }})"
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -el {0}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout latest commit
uses: actions/checkout@v4
- name: Install
run: pip install -r requirements.txt

0 comments on commit e5d08aa

Please sign in to comment.