st2 v3.9 updates #9
Workflow file for this run
This file contains hidden or 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: | |
| # Special job which automatically cancels old runs for the same branch, prevents runs for the | |
| # same file set which has already passed, etc. | |
| pre_job: | |
| name: Skip Duplicate Jobs Pre Job | |
| runs-on: ubuntu-latest | |
| outputs: | |
| should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
| steps: | |
| - id: skip_check | |
| uses: fkirc/skip-duplicate-actions@4c656bbdb6906310fa6213604828008bc28fe55d # v3.3.0 | |
| with: | |
| cancel_others: 'true' | |
| github_token: ${{ github.token }} | |
| lint-checks: | |
| needs: pre_job | |
| name: Make requirements and lint check on Python3.10 | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout st2tests repository | |
| uses: actions/checkout@v2 | |
| - name: Checkout st2 repository | |
| uses: actions/checkout@v2 | |
| with: | |
| repository: "StackStorm/st2" | |
| - name: Set up Python3.10 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10.12' | |
| - name: Install apt dependencies | |
| run: | | |
| sudo apt install -y libldap2-dev libsasl2-dev | |
| - name: Install virtualenv | |
| run: | | |
| python3 -m pip install virtualenv | |
| - name: Make requirements | |
| timeout-minutes: 5 | |
| run: | | |
| script -e -c "make requirements" | |
| - name: Make Lint | |
| timeout-minutes: 15 | |
| run: | | |
| script -e -c "make lint" |