File: main.yml

package info (click to toggle)
ocaml-metadata 0.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 624 kB
  • sloc: ml: 1,980; makefile: 33; sh: 5
file content (16 lines) | stat: -rw-r--r-- 358 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: Build
on: [push]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - name: Checkout
      uses: actions/checkout@v4
    - name: Setup OCaml
      run: sudo apt install -y ocaml ocaml-dune
    - name: Install FFmpeg
      run: sudo apt install -y ffmpeg
    - name: Build
      run: dune build
    - name: Run tests
      run: dune build @citest