Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
tgotwig committed Nov 28, 2023
1 parent b0878fa commit ca8ea36
Showing 1 changed file with 46 additions and 46 deletions.
92 changes: 46 additions & 46 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,52 +14,52 @@ jobs:
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
# 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: self-hosted
name: 🏳️‍🌈 Windows
Expand Down

0 comments on commit ca8ea36

Please sign in to comment.