Skip to content

Bump actions/setup-python from 6.1.0 to 6.2.0 (#38) #44

Bump actions/setup-python from 6.1.0 to 6.2.0 (#38)

Bump actions/setup-python from 6.1.0 to 6.2.0 (#38) #44

Workflow file for this run

name: Sytanx check using py_compile
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-22.04
timeout-minutes: 5
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
permissions:
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -U pip
pip install -e ".[testing]"
- name: Run py_compile for main code
run: |
find slack_discovery_sdk -name '*.py' | xargs python -m py_compile
- name: Run py_compile for test code
run: |
find tests -name '*.py' | xargs python -m py_compile