Skip to content

Commit

Permalink
ci: test several python versions again (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
hallettj authored Feb 26, 2024
1 parent d183425 commit df51155
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 32 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
name: Test & Release
name: Release
on:
push:
branches:
- main
- release
pull_request:

jobs:
release:
name: Test & Release
name: Release
runs-on: ubuntu-latest
steps:
- name: Check Out Code
Expand Down
29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test
on:
pull_request:

jobs:
test:
name: Test

runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- 3.13
- 3.12
- 3.11
- 3.10
- 3.9
- 3.8
- 2.7

steps:
- name: Check Out Code
uses: actions/checkout@v3

- name: Install Npm Dependencies
run: npm ci

- name: Test
run: npm test
29 changes: 0 additions & 29 deletions .travis.yml

This file was deleted.

0 comments on commit df51155

Please sign in to comment.