Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Add support for PHPStorm 2024.1 (#2031) #1

Add support for PHPStorm 2024.1 (#2031)

Add support for PHPStorm 2024.1 (#2031) #1

Workflow file for this run

name: Test installs
on:
push:
branches:
- master
pull_request:
jobs:
install-on-linux:
strategy:
matrix:
os:
- "ubuntu-20.04"
- "ubuntu-22.04"
- "ubuntu-24.04"
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
runs-on: ${{ matrix.os }}
container: python:${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- run: pip install .
- run: mackup --help
install-on-macos:
strategy:
matrix:
os:
- macos-12
- macos-13
- macos-14
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: pip install .
- run: mackup --help