π Fix a typo #36
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: build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-python: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
python-version: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- "3.13" | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Set up python ${{ matrix.python-version }} (${{ matrix.os }}) | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install cli tools | |
run: | | |
python -m pip install --upgrade phosphorus yamk uv | |
- name: Create and activate a virtual environment (${{ matrix.os }}) | |
shell: bash | |
if: ${{ runner.os != 'Windows' }} | |
run: | | |
uv venv .venv | |
echo "VIRTUAL_ENV=.venv" >> $GITHUB_ENV | |
echo "$PWD/.venv/bin" >> $GITHUB_PATH | |
- name: Create and activate a virtual environment (${{ matrix.os }}) | |
shell: pwsh | |
if: ${{ runner.os == 'Windows' }} | |
run: | | |
uv venv .venv | |
"VIRTUAL_ENV=.venv" | Out-File -FilePath $env:GITHUB_ENV -Append | |
"$PWD/.venv/Scripts" | Out-File -FilePath $env:GITHUB_PATH -Append | |
- name: Use cache | |
uses: actions/cache@v4 | |
with: | |
path: .venv | |
key: ${{ matrix.os }}-${{ matrix.python-version }}-lint-${{ hashFiles('pyproject.toml') }} | |
- name: Build the project | |
run: | | |
yam -e build |