Skip to content

Commit

Permalink
installing the plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
kessler-frost committed Feb 13, 2024
1 parent 2c54c60 commit 42c2e5b
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion .github/workflows/docker_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,46 @@ on:
jobs:
build_container:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
container:
- python:3.8-buster
- python:3.8-bullseye
- python:3.9-buster
- python:3.9-bullseye
- python:3.10-buster
- python:3.10-bullseye
experimental: [false]
include:
- os: macos-latest
python-version: "3.8"
experimental: false
- os: macos-latest
python-version: "3.9"
experimental: false
- os: macos-latest
python-version: "3.10"
experimental: false
container: ${{ matrix.container }}
continue-on-error: ${{ matrix.experimental }}
steps:
- name: Check out the repository
uses: actions/checkout@v4

- name: Set up Python
if: matrix.os == 'macos-latest'
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Create the ssh keypair
run: |
cd tests/docker_tests
ssh-keygen -t ed25519 -f slurm_test -N ''
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

Expand Down

0 comments on commit 42c2e5b

Please sign in to comment.