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 984ca10 commit 2060d2eCopy full SHA for 2060d2e
.github/workflows/build.yml
@@ -6,15 +6,19 @@ jobs:
6
build-and-test:
7
runs-on: ubuntu-latest
8
steps:
9
- - uses: actions/checkout@v2
10
- - name: Set up Node.js
11
- uses: actions/setup-node@v2
12
- with:
13
- node-version: '16.x'
14
- - name: Install Dependencies
15
- run: npm install
16
- - name: Run Tests
17
- run: npm test
+ - uses: actions/checkout@v2
+ - name: Set up Python
+ uses: actions/setup-python@v2
+ with:
+ python-version: '3.8' # You can use the version you need
+ - name: Install Dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install -r requirements.txt
18
+ - name: Run Tests
19
20
+ # If you're using pytest for tests, for example:
21
+ pytest
22
23
deploy_to_production:
24
0 commit comments