mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-27 08:19:30 +08:00
d79c5824b8
Also adjust newlines to improve output
28 lines
513 B
YAML
28 lines
513 B
YAML
name: GitHub Actions file health check
|
|
|
|
on:
|
|
push:
|
|
branches: [ '**' ]
|
|
pull_request:
|
|
types: [edited, opened, reopened, synchronize]
|
|
branches: [ '**' ]
|
|
|
|
jobs:
|
|
check_file_health:
|
|
name: Check file health
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- name: checkout repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: install zsh
|
|
run: |
|
|
sudo apt update
|
|
sudo apt install zsh
|
|
|
|
- name: run check file health script
|
|
run: |
|
|
./.github/workflows/file_health.sh
|