FFMpegCore/.github/workflows/ci.yml
Malte Rosenbjerg cfd3481258 Bump action versions
Former-commit-id: fafb01e02b
2023-01-28 11:25:28 +01:00

36 lines
674 B
YAML

name: CI
on:
pull_request:
branches:
- master
- release
paths:
- .github/workflows/ci.yml
- FFMpegCore/**
- FFMpegCore.Test/**
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
timeout-minutes: 6
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Prepare .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Prepare FFMpeg
uses: FedericoCarboni/setup-ffmpeg@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Test with dotnet
run: dotnet test --logger GitHubActions