Skip to content

Fixing correct handling of macOS special zip with all kind of hidden … #124

Fixing correct handling of macOS special zip with all kind of hidden …

Fixing correct handling of macOS special zip with all kind of hidden … #124

Workflow file for this run

name: CI
on:
push:
branches: [main, staging]
pull_request:
jobs:
test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install ffmpeg (for tests)
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install -y ffmpeg
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Lint (optional)
run: cargo fmt -- --check