chore: remove pylint, Pygments, and pdbpp #70
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Test setup Mac machine with packages | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: ["main", "master"] | |
paths: | |
- ".github/workflows/test_macos_2.yml" | |
- "setup/setup_new_mac_machine.sh" | |
push: | |
branches: ["main", "master"] | |
paths: | |
- ".github/workflows/test_macos_2.yml" | |
- "setup/setup_new_mac_machine.sh" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
testMacSetup: | |
runs-on: macos-latest | |
timeout-minutes: 60 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run Setup new Mac machine script | |
run: | | |
set -eo pipefail | |
export CI=1 | |
# Test Mac OS package installation | |
bash setup/setup_new_mac_machine.sh |