We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f1933d commit cfb3919Copy full SHA for cfb3919
.github/workflows/ci.yml
@@ -12,11 +12,10 @@ jobs:
12
ports:
13
- 8000:8000
14
steps:
15
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
16
- name: Setup Python
17
uses: actions/setup-python@v2
18
-
19
- - name: Install requierments.txt
+ - name: Install requirements.txt
20
run: |
21
pip3 install -r ./requirements.txt
22
pip3 install pytest pytest-cov
@@ -25,9 +24,11 @@ jobs:
25
24
pytest
26
pytest --cov .
27
- name: Setup Node
28
- uses: actions/setup-node@v1
+ uses: actions/setup-node@v3
+ with:
29
+ node-version: 18
30
- name: Install serverless
- run: npm install -g serverless serverless-python-requirements
31
+ run: npm install
32
- name: Deploy QA
33
if: github.ref == 'refs/heads/qa'
34
run: serverless deploy -s qa
0 commit comments