diff options
author | Marc Cornellà <hello@mcornella.com> | 2023-10-11 20:44:46 +0200 |
---|---|---|
committer | Marc Cornellà <hello@mcornella.com> | 2023-10-11 20:44:46 +0200 |
commit | 408330e131110c8b86ce60ab0492b35657cb4d57 (patch) | |
tree | 23cfae3c86ab0039a155652da280f48db1e53ac6 /.github/workflows/main.yml | |
parent | 53cb50acb5c2c70f6ba9d26d3d2ffb37c8a19e8f (diff) | |
download | zsh-408330e131110c8b86ce60ab0492b35657cb4d57.tar.gz zsh-408330e131110c8b86ce60ab0492b35657cb4d57.tar.bz2 zsh-408330e131110c8b86ce60ab0492b35657cb4d57.zip |
ci: remove redundant macos runner for CI tests
Currently the macOS runner is not needed, as we are only checking
zsh syntax. We can reactivate it in the future if needed.
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r-- | .github/workflows/main.yml | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 57403629c..de7d98262 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,16 +20,12 @@ permissions: jobs: tests: name: Run tests - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest if: github.repository == 'ohmyzsh/ohmyzsh' - strategy: - matrix: - os: [ubuntu-latest, macos-latest] steps: - name: Set up git repository uses: actions/checkout@v3 - name: Install zsh - if: runner.os == 'Linux' run: sudo apt-get update; sudo apt-get install zsh - name: Check syntax run: | |