-
Notifications
You must be signed in to change notification settings - Fork 12
46 lines (35 loc) · 940 Bytes
/
Copy pathci.yml
File metadata and controls
46 lines (35 loc) · 940 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
34
35
36
37
38
39
40
41
42
43
44
45
46
name: CI
on:
pull_request:
push:
branches: [master]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.14"
- uses: actions/setup-go@v7
with:
go-version-file: go.mod
cache: true
- uses: actions/setup-node@v7
with:
node-version: "20"
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r python/requirements.txt -r python/requirements-dev.txt
- name: Install TypeScript dependencies
run: npm install --ignore-scripts --no-package-lock
- name: Verify
run: make verify