-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy path.travis.yml
41 lines (35 loc) · 1.13 KB
/
.travis.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
---
os: linux
dist: jammy
language: python
python:
- "3.11"
before_install:
- curl -L https://git.io/misspell | BINDIR=~/.local/bin sh
script:
# Checks all files for commonly misspelled English words with client9's misspell
- bash tests/misspell.bash
# Testing if the build works
- bash tests/checkbuild.bash
#Testing link related things
# Broken site and section links, hidden files
- python3 tests/python_link_tests/link_check.py
# Test if any http urls point to docs.csc.fi
- bash tests/check_internal_url.sh
# Test if iframes contain src attribute
- bash tests/check_youtube_embed.sh
# Testing style-guide and slurm erros
# Valid slurm commands
- bash tests/check_commands.sh
# Valid partitions
- bash tests/check_partitions.sh
# Dont set mail on by default
- bash tests/check_mail_commands.sh
# Use long slurm flags
- bash tests/check_long_slurm_flags.sh
# There should be no FIXME entires present
- bash tests/check_fixme.sh
# Test that no files are masked by folder/index.md
- bash tests/check_masked.sh
# Test that all apps have an entry for license
- bash tests/check_licenses.sh