Skip to content

Merge pull request #84 from MPC-SoK/add-gh-actions #9

Merge pull request #84 from MPC-SoK/add-gh-actions

Merge pull request #84 from MPC-SoK/add-gh-actions #9

Workflow file for this run

name: Build and test the Docker container for Jiff
on:
push:
branches: [ master ]
paths:
- jiff/*
pull_request:
branches: [ master ]
paths:
- jiff/*
jobs:
build:
name: Build container for Jiff
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: jiff
tags: jiff
load: true
cache-from: type=gha
cache-to: type=gha,mode=max
push: false