Skip to content

Add GH Actions to build the Docker containers #3

Add GH Actions to build the Docker containers

Add GH Actions to build the Docker containers #3

Workflow file for this run

name: Build and test the Docker container for CBMC-GC
on:
push:
branches: [ master ]
paths:
- cbmc-gc/*
pull_request:
branches: [ master ]
paths:
- cbmc-gc/*
jobs:
build:
name: Build container for cbmc-gc
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v2
- uses: docker/build-push-action@v4
with:
context: cbmc-gc
tags: cbmc-gc
load: true
cache-from: type=gha
cache-to: type=gha,mode=max
push: false