Skip to content

python instance configuration #12

python instance configuration

python instance configuration #12

Workflow file for this run

name: Deploy Serverless V4 project
on:
push:
branches:
- master
jobs:
deploy:
name: deploy
runs-on: ubuntu-latest
environment: dev
strategy:
matrix:
node-version: [20.x]
python-version: ["13.12"]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Execute tests Python ${{matrix.python-version}}
uses: actions/setup-python@v4
with:
python-version: ${{matrix.python-version}}
- run: npm install
- name: serverless deploy
uses: serverless/github-action@v4
with:
args: deploy
env:
SERVERLESS_ACCESS_KEY: ${{ secrets.SERVERLESS_ACCESS_KEY }}