mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-27 08:19:30 +08:00
535603fac4
Jobs in those workflows has little to do with specific OS version, so just use the latest.
21 lines
414 B
YAML
21 lines
414 B
YAML
name: CI - File health
|
|
|
|
on: [pull_request, push]
|
|
|
|
jobs:
|
|
check_file_health:
|
|
name: Check file health
|
|
runs-on: ubuntu-latest
|
|
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
|