From 2b5fbf9dd411290bb3f04ae72784459a9e61a47c Mon Sep 17 00:00:00 2001 From: Karl Palmskog Date: Sat, 30 Dec 2023 00:56:38 +0100 Subject: [PATCH] add back docker action --- .github/workflows/docker-action.yml | 32 +++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/docker-action.yml diff --git a/.github/workflows/docker-action.yml b/.github/workflows/docker-action.yml new file mode 100644 index 0000000..6a61dc6 --- /dev/null +++ b/.github/workflows/docker-action.yml @@ -0,0 +1,32 @@ +# 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: + - v8.19 + 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: + - 'coqorg/coq:8.19' + fail-fast: false + steps: + - uses: actions/checkout@v3 + - uses: coq-community/docker-coq-action@v1 + with: + opam_file: 'coq-aac-tactics.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