Adds Action List Routine to the skill library (#299) #223
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: libraries tests | |
on: | |
pull_request: | |
branches: ["main"] | |
paths: ["libraries/**", ".github/workflows/libraries.yml"] | |
push: | |
branches: ["main"] | |
paths: ["libraries/**", ".github/workflows/libraries.yml"] | |
workflow_dispatch: | |
defaults: | |
run: | |
working-directory: libraries | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
run: uv python install ${{ matrix.python-version }} | |
- name: Install and run tests | |
run: make test |