mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-17 14:36:29 +03:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
48 lines
1.3 KiB
YAML
48 lines
1.3 KiB
YAML
name: Raleigh tests
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- 'raleigh/**'
|
|
- '.github/workflows/raleigh-tests.yml'
|
|
- '.github/workflows/validate.yml'
|
|
pull_request:
|
|
paths:
|
|
- 'raleigh/**'
|
|
- '.github/workflows/raleigh-tests.yml'
|
|
- '.github/workflows/validate.yml'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
test:
|
|
name: Python ${{ matrix.python }} / protobuf ${{ matrix.protobuf }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python: ['3.10', '3.14']
|
|
protobuf: [absent, present]
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v7
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v7
|
|
with:
|
|
python-version: ${{ matrix.python }}
|
|
- name: Install optional protobuf runtime
|
|
if: matrix.protobuf == 'present'
|
|
run: python -m pip install 'protobuf>=6.31.1,<7'
|
|
- name: Ensure optional protobuf runtime is absent
|
|
if: matrix.protobuf == 'absent'
|
|
run: |
|
|
python -m pip uninstall -y protobuf
|
|
if python -c 'import google.protobuf' 2>/dev/null; then
|
|
echo 'protobuf remains installed' >&2
|
|
exit 1
|
|
fi
|
|
- name: Run deterministic Raleigh unit tests
|
|
run: python3 -m unittest raleigh/tests/test_raleigh.py
|