Merge pull request #84 from MPC-SoK/add-gh-actions #4
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 MPyC | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- mpyc/* | |
pull_request: | |
branches: [ master ] | |
paths: | |
- mpyc/* | |
jobs: | |
build: | |
name: Build container for MPyC | |
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: mpyc | |
tags: mpyc | |
load: true | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
push: false |