Fix CI issues #376
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: π¦ Running Rust | |
on: [push, pull_request] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
Linter: | |
runs-on: ubuntu-latest | |
name: π§Ή Linter | |
steps: | |
- name: π actions/checkout@v2 | |
uses: actions/checkout@v2 | |
- name: π΅οΈ Run linter | |
run: cargo clippy | |
# MacOS: | |
# name: π MacOS | |
# runs-on: macos-latest | |
# steps: | |
# - name: π actions/checkout@v2 | |
# uses: actions/checkout@v2 | |
# - name: β¬ Install yt-dlp | |
# run: | | |
# wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O yt-dlp | |
# chmod a+rx yt-dlp | |
# echo "$(pwd)" >> $GITHUB_PATH | |
# - name: β¬οΈ Install ffmpeg | |
# run: | | |
# wget https://evermeet.cx/ffmpeg/get/zip -qO ffmpeg.zip | |
# unzip ffmpeg.zip | |
# - name: β¬οΈ Install task | |
# run: brew install go-task/tap/go-task | |
# - name: π΅οΈ Run tests | |
# run: task test | |
# Ubuntu: | |
# runs-on: ubuntu-latest | |
# name: π§ Ubuntu | |
# steps: | |
# - name: π actions/checkout@v2 | |
# uses: actions/checkout@v2 | |
# - name: β¬οΈ Install yt-dlp | |
# run: | | |
# wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O yt-dlp | |
# chmod a+rx yt-dlp | |
# echo "$(pwd)" >> $GITHUB_PATH | |
# - name: β¬οΈ Install ffmpeg | |
# run: sudo apt install -y ffmpeg | |
# - name: β¬οΈ Install task | |
# run: | | |
# curl -sL "https://github.com/go-task/task/releases/download/v3.9.0/task_linux_amd64.tar.gz" | tar xz | |
# sudo mv task /usr/local/bin | |
# - name: π΅οΈ Run tests | |
# run: task test | |
Windows: | |
runs-on: windows-latest | |
name: π³οΈβπ Windows | |
steps: | |
- name: π actions/checkout@v2 | |
uses: actions/checkout@v2 | |
- name: β¬οΈ Install chocolatey | |
uses: crazy-max/ghaction-chocolatey@v1 | |
with: | |
args: -h | |
- name: β¬οΈ Install task | |
run: choco install task | |
- name: β¬οΈ Install yt-dlp | |
run: choco install yt-dlp | |
- name: β¬οΈ Install ffmpeg | |
run: choco install ffmpeg | |
- name: π΅οΈ Run tests | |
run: task test |