* build(node): update dependencies and build to target Node 20 and remove the build deprecation warning annotations * ci: trigger build on pull requests
39 lines
1014 B
YAML
39 lines
1014 B
YAML
on:
|
|
push:
|
|
pull_request:
|
|
|
|
name: Test Action
|
|
|
|
jobs:
|
|
Testing:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
|
|
os: ["windows-latest", "ubuntu-latest", "macos-latest"]
|
|
name: Test the action
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup PDM
|
|
uses: ./
|
|
id: setup-pdm
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
cache: true
|
|
allow-python-prereleases: true
|
|
|
|
- name: Check output
|
|
run: |
|
|
echo ${{ steps.setup-pdm.outputs.pdm-bin }}
|
|
echo ${{ steps.setup-pdm.outputs.pdm-version }}
|
|
echo ${{ steps.setup-pdm.outputs.python-path }}
|
|
echo ${{ steps.setup-pdm.outputs.python-version }}
|
|
|
|
- name: Install dependencies
|
|
run: pdm install -v && pdm info
|
|
|
|
- name: Verify python version
|
|
run: pdm run python test.py
|
|
env:
|
|
PYTHON_VERSION: ${{ matrix.python-version }}
|