Bump tempfile from 3.25.0 to 3.26.0 #138
Workflow file for this run
This file contains hidden or 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: unit tests | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - '**/*.rs' | |
| - '*.toml' | |
| - '*.lock' | |
| pull_request: | |
| paths: | |
| - '**/*.rs' | |
| - '*.toml' | |
| - '*.lock' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install libav libraries | |
| uses: tecolicom/actions-use-apt-tools@v1 | |
| with: | |
| tools: libavcodec-dev libavformat-dev libswscale-dev libavfilter-dev libavdevice-dev libavutil-dev yasm | |
| method: timestamp | |
| - name: Setup FFmpeg | |
| uses: AnimMouse/setup-ffmpeg@v1 | |
| with: | |
| version: 7.1 | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: stable | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| key: stable | |
| - uses: taiki-e/install-action@nextest | |
| - name: Test | |
| run: cargo nextest run --config-file .cargo/nextest.toml --profile ci | |
| # - name: Install cargo-careful | |
| # run: cargo install cargo-careful | |
| # - name: Run cargo-careful | |
| # run: cargo +nightly careful test --target x86_64-unknown-linux-gnu |