Add GH Actions to build the Docker containers #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |