Skip to content

Commit

Permalink
ci: add macos
Browse files Browse the repository at this point in the history
ci

ci

ci
  • Loading branch information
lgarrison committed Nov 8, 2024
1 parent a9b00b9 commit 84c435e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@ on: [push]
jobs:
test:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest]
include:
- os: macos-latest
python-version: "3.13"

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion tests/test_slurm/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/bash
#!/bin/bash

workdir=$(mktemp -d -p ./ disbatch-test.XXXX)
cp Tasks $workdir
Expand Down
2 changes: 1 addition & 1 deletion tests/test_ssh/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/bash
#!/bin/bash

workdir=$(mktemp -d -p ./ disbatch-test.XXXX)
cp Tasks $workdir
Expand Down

0 comments on commit 84c435e

Please sign in to comment.