-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (43 loc) · 1.17 KB
/
Copy pathtest.yml
File metadata and controls
47 lines (43 loc) · 1.17 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
name: Tests
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Run unit tests (stdlib only)
run: python -m unittest discover -s tests -v
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Install pre-commit
run: python -m pip install pre-commit==3.8.0
- name: Install shellcheck
run: sudo apt-get update && sudo apt-get install -y shellcheck
- name: Install actionlint
run: go install github.com/rhysd/actionlint/cmd/actionlint@v1.7.7
- name: Run pre-commit
run: pre-commit run --all-files
- name: Run actionlint
run: actionlint
- name: Run shellcheck
run: shellcheck scripts/run_local.sh