-
Notifications
You must be signed in to change notification settings - Fork 8
54 lines (51 loc) · 1.63 KB
/
linter.yml
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
---
#################################
#################################
## Super Linter GitHub Actions ##
#################################
#################################
name: Lint & Test Code Base
#############################
# Start the job on all pull requests #
#############################
on:
pull_request:
branches: [master, main]
jobs:
lint:
name: Lint Code Base
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Full git history is needed to get a proper
# list of changed files within `super-linter`
fetch-depth: 0
################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: super-linter/super-linter/slim@v6
env:
VALIDATE_ALL_CODEBASE: false
VALIDATE_HTML: false
JAVASCRIPT_DEFAULT_STYLE: prettier
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
KUBERNETES_KUBECONFORM_OPTIONS: -ignore-missing-schemas
test:
name: Test Code Base
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install Dependencies
run: | # apt packages needed for python3-saml, which is dependent on xmlsec
sudo apt-get update
sudo apt-get install -y pkg-config libxml2-dev libxmlsec1-dev libxmlsec1-openssl
pip install dashboard/src pytest pytest-cov pytest-mock
- name: Test with pytest
run: pytest . --cov