fix: move process.exit() to cache-save.ts (#53) #135
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
on: | |
push: | |
branches: [main] | |
pull_request: | |
name: Test Action | |
jobs: | |
Testing: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ['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 }} |