fix(ci): use pipenv
cache
#23
Workflow file for this run
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: ci | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: | |
- macos-12 | |
- ubuntu-22.04 | |
- windows-2022 | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4.1.1 | |
- name: Use Node version defined in manifest | |
uses: volta-cli/action@v4 | |
- name: Node.js version | |
run: node -v | |
- name: npm version | |
run: npm -v | |
- name: Setup Python | |
uses: actions/setup-python@v4.6.1 | |
with: | |
python-version: '3.10' | |
cache: pip | |
- name: Install Node dependencies | |
run: npm ci | |
- name: Run Node tests | |
run: npm t | |
- name: Install Pip dependencies | |
run: python3 -m pip install -r requirements.txt | |
- name: Run Python tests | |
run: python3 -m pytest ./py/selenium/service_builder/test.py |