summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rwxr-xr-x.github/prepare_debian.sh1
-rw-r--r--.github/workflows/test.yml31
2 files changed, 32 insertions, 0 deletions
diff --git a/.github/prepare_debian.sh b/.github/prepare_debian.sh
index d8a76da..5222659 100755
--- a/.github/prepare_debian.sh
+++ b/.github/prepare_debian.sh
@@ -5,6 +5,7 @@ set -e
5 5
6export DEBIAN_FRONTEND=noninteractive 6export DEBIAN_FRONTEND=noninteractive
7 7
8sed "s/main/non-free contrib/g" /etc/apt/sources.list.d/debian.sources > /etc/apt/sources.list.d/debian-nonfree.sources
8apt-get update 9apt-get update
9apt-get -y install software-properties-common 10apt-get -y install software-properties-common
10if [ $(lsb_release -is) = "Debian" ]; then 11if [ $(lsb_release -is) = "Debian" ]; then
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 80d49f7..e825eb3 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -7,9 +7,40 @@ on:
7 pull_request: 7 pull_request:
8 8
9jobs: 9jobs:
10 codespell:
11 name: codespell
12 strategy:
13 fail-fast: false
14 runs-on: ubuntu-latest
15 steps:
16 - name: Checkout
17 uses: actions/checkout@v3
18 - name: Codespell
19 uses: codespell-project/actions-codespell@master
20 with:
21 skip: "./.git,./.gitignore,./ABOUT-NLS,*.po,./gl,./po,./tools/squid.conf,./build-aux/ltmain.sh"
22 ignore_words_list: allright,gord,didi,hda,nd,alis,clen,scrit,ser,fot,te,parm,isnt,consol,oneliners
23 check_filenames: true
24 check_hidden: true
25# super-linter:
26# name: super-linter
27# strategy:
28# fail-fast: false
29# runs-on: ubuntu-latest
30# steps:
31# - name: Checkout
32# uses: actions/checkout@v3
33# - name: Lint Code Base
34# uses: github/super-linter@v5.0.0
35# env:
36# DEFAULT_BRANCH: master
37# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10# macos: 38# macos:
11# ... 39# ...
12 linux: 40 linux:
41 needs:
42 - codespell
43# - super-linter
13 runs-on: ubuntu-latest 44 runs-on: ubuntu-latest
14 name: Running tests on ${{ matrix.distro }} 45 name: Running tests on ${{ matrix.distro }}
15 strategy: 46 strategy: