File: docker-action.yml

package info (click to toggle)
mathcomp-finmap 2.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 436 kB
  • sloc: sh: 51; makefile: 13
file content (35 lines) | stat: -rw-r--r-- 964 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# This file was generated from `meta.yml`, please do not edit manually.
# Follow the instructions on https://github.com/coq-community/templates to regenerate.
name: Docker CI

on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - '**'

jobs:
  build:
    # the OS must be GNU/Linux to be able to use the docker-coq-action
    runs-on: ubuntu-latest
    strategy:
      matrix:
        image:
          - 'mathcomp/mathcomp:2.3.0-coq-8.20'
          - 'mathcomp/mathcomp:2.3.0-coq-8.20'
          - 'mathcomp/mathcomp-dev:coq-8.20'
          - 'mathcomp/mathcomp-dev:rocq-prover-dev'
      fail-fast: false
    steps:
      - uses: actions/checkout@v4
      - uses: coq-community/docker-coq-action@v1
        with:
          opam_file: 'rocq-mathcomp-finmap.opam'
          custom_image: ${{ matrix.image }}


# See also:
# https://github.com/coq-community/docker-coq-action#readme
# https://github.com/erikmd/docker-coq-github-action-demo