Bump actions/github-script from 7 to 8 #704
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: test | |
on: | |
push: | |
branches: | |
- "main" | |
- "feature/**" | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
test: | |
strategy: | |
matrix: | |
platform: | |
- "ubuntu-latest" | |
- "macos-latest" | |
# FIXME: "windows-latest" is not supported for now | |
# - "windows-latest" | |
python-version: | |
- "3.10" | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up uv | |
shell: bash | |
run: pipx install uv | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run CI tests | |
shell: bash | |
run: | | |
make ci-test |