SSH-Panel : support for macOS x64 and arm64 #2756
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: CI | |
on: [push, pull_request] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Run repository tests | |
run: python -m unittest | |
trigger-review: | |
needs: tests | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger package review | |
# continue-on-error: true | |
run: curl --http1.1 -X POST https://packagecontrol.io/test_pr/$PR_NUM.json | |
env: | |
PR_NUM: ${{ github.event.pull_request.number }} |