build(deps): bump actions/checkout from 3 to 4 #411
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Tests' | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: | |
- '*' | |
push: {} | |
jobs: | |
Config-test: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: 'KengoTODA/actions-setup-docker-compose@v1' | |
with: | |
version: '2.20.2' | |
- uses: 'actions/checkout@v4' | |
- name: 'DEBUG' | |
run: 'docker version && docker compose version' | |
- name: 'Run tests' | |
run: './test.sh' | |
- uses: 'actions/upload-artifact@v3' | |
if: 'failure()' | |
with: | |
name: 'test-artifacts' | |
path: | | |
log.log | |
*.patch | |
Health-checks-codimd: | |
uses: 'tomMoulard/make-my-server/.github/workflows/healthcheck.workflow.tmpl.yml@master' | |
with: | |
service_name: 'codimd' | |
timeout-minutes: 5 | |
# Health-checks-grafana: | |
# uses: 'tomMoulard/make-my-server/.github/workflows/healthcheck.workflow.tmpl.yml@master' | |
# with: | |
# sus: 'mkdir -p ./grafana/grafana/ ./grafana/prometheus/data/' | |
# service_name: 'grafana' | |
# Health-checks-hits: | |
# uses: 'tomMoulard/make-my-server/.github/workflows/healthcheck.workflow.tmpl.yml@master' | |
# with: | |
# sus: 'mkdir -p ./hits/postgresql/data' | |
# service_name: 'hits' | |
Health-checks-homeassistant: | |
uses: 'tomMoulard/make-my-server/.github/workflows/healthcheck.workflow.tmpl.yml@master' | |
with: | |
service_name: 'homeassistant' | |
# Health-checks-hugo: | |
# uses: 'tomMoulard/make-my-server/.github/workflows/healthcheck.workflow.tmpl.yml@master' | |
# with: | |
# service_name: 'hugo' | |
Health-checks-jackett: | |
uses: 'tomMoulard/make-my-server/.github/workflows/healthcheck.workflow.tmpl.yml@master' | |
with: | |
service_name: 'jackett' | |
Health-checks-kavita: | |
uses: 'tomMoulard/make-my-server/.github/workflows/healthcheck.workflow.tmpl.yml@master' | |
with: | |
service_name: 'kavita' | |
# Health-checks-mastodon: | |
# uses: 'tomMoulard/make-my-server/.github/workflows/healthcheck.workflow.tmpl.yml@master' | |
# with: | |
# service_name: 'mastodon' | |
Health-checks-nextcloud: | |
uses: 'tomMoulard/make-my-server/.github/workflows/healthcheck.workflow.tmpl.yml@master' | |
with: | |
service_name: 'nextcloud' | |
Health-checks-nginx: | |
uses: 'tomMoulard/make-my-server/.github/workflows/healthcheck.workflow.tmpl.yml@master' | |
with: | |
service_name: 'nginx' | |
Health-checks-searxng: | |
uses: 'tomMoulard/make-my-server/.github/workflows/healthcheck.workflow.tmpl.yml@master' | |
with: | |
service_name: 'searxng' | |
Health-checks-sharelatex: | |
uses: 'tomMoulard/make-my-server/.github/workflows/healthcheck.workflow.tmpl.yml@master' | |
with: | |
service_name: 'sharelatex' | |
Health-checks-streama: | |
uses: 'tomMoulard/make-my-server/.github/workflows/healthcheck.workflow.tmpl.yml@master' | |
with: | |
sus: 'touch streama/streama.mv.db streama/streama.trace.db' | |
service_name: 'streama' | |
Health-checks-traefik: | |
uses: 'tomMoulard/make-my-server/.github/workflows/healthcheck.workflow.tmpl.yml@master' | |
with: | |
service_name: 'traefik' | |
Health-checks-transmission: | |
uses: 'tomMoulard/make-my-server/.github/workflows/healthcheck.workflow.tmpl.yml@master' | |
with: | |
service_name: 'transmission' | |
Health-checks-wordpress: | |
uses: 'tomMoulard/make-my-server/.github/workflows/healthcheck.workflow.tmpl.yml@master' | |
with: | |
service_name: 'wordpress' | |
Lint: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: 'actions/checkout@v4' | |
- name: 'Install yamllint' | |
run: 'pip install yamllint' | |
- name: 'yamllint version' | |
run: 'yamllint --version' | |
- name: 'Lint YAML files' | |
run: 'yamllint --format github .' |