-
Notifications
You must be signed in to change notification settings - Fork 24
33 lines (27 loc) · 826 Bytes
/
CI.yml
File metadata and controls
33 lines (27 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Build
# Run this workflow every time a new commit pushed to your repository
on:
push:
jobs:
tests:
runs-on: ubuntu-latest
name: Build
steps:
# Checks out a copy of your repository on the ubuntu machine
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup npm
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: '20'
- name: Setup Python
uses: actions/setup-python@v5.5.0 # v5.5.0
with:
python-version: '3.13'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
- name: Tests
run: |
make test