-
Notifications
You must be signed in to change notification settings - Fork 2
61 lines (46 loc) · 1.62 KB
/
Copy pathtest.yml
File metadata and controls
61 lines (46 loc) · 1.62 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Tests
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
codeql:
name: CodeQL analysis
runs-on: ubuntu-latest
permissions:
security-events: write
strategy:
matrix:
language: [python, javascript-typescript]
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Initialize CodeQL
uses: github/codeql-action/init@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4.37.7
with:
languages: ${{ matrix.language }}
config-file: .github/codeql/codeql-config.yml
- uses: github/codeql-action/autobuild@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4.37.7
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4.37.7
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.12"
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "22"
- name: Install Python dependencies
run: |
python -m pip install uv==0.11.11
uv sync --locked
- name: Write config.json
run: echo '{"api_key":"ci-test-key","port":8108,"roots":{}}' > config.json
- name: Run Python tests
run: uv run --locked pytest tests/ query/tests/ -v
- name: Run VS Code extension tests
run: node run_tests.mjs