Skip to content

Update actions/checkout action to v5 #142

Update actions/checkout action to v5

Update actions/checkout action to v5 #142

Workflow file for this run

name: 🧪 Running integration tests
on:
push:
branches-ignore:
- 'renovate/**'
- 'coderabbitai/**'
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
env:
CARGO_TERM_COLOR: always
jobs:
Linter:
runs-on: ubuntu-latest
name: 🧹 Linter
steps:
- name: 🚀 actions/checkout@v4
uses: actions/checkout@v5
- name: 🕵️ Run linter
run: cargo clippy
MacOS:
name: 🍎 MacOS
runs-on: macos-latest
steps:
- name: 🚀 actions/checkout@v4
uses: actions/checkout@v5
- name: ⬇️ Install ffmpeg
run: brew install ffmpeg
- 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@v4
uses: actions/checkout@v5
- name: ⬇️ Update package lists
run: sudo apt-get update
- 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@v4
uses: actions/checkout@v5
- name: ⬇️ Install chocolatey
uses: crazy-max/ghaction-chocolatey@v3
with:
args: -h
- name: ⬇️ Install ffmpeg
run: choco install ffmpeg
- name: ⬇️ Install task
run: choco install go-task
- name: 🕵️ Run tests
run: task test