Skip to content

-Update Makefile

-Update Makefile #48

Workflow file for this run

name: Run juicer tests
on:
push:
branches:
- '*'
pull_request:
branches:
- develop
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-latest]
steps:
- uses: actions/checkout@v2
with:
submodules: true # Clone submodules
fetch-depth: 0 # Ensure full repository history is fetched
# Set up Docker Buildx (optional, useful for multi-platform builds)
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# Build the Docker image
- name: Build Docker image
uses: docker/build-push-action@v5
with:
context: .
push: false # Do not push the image
tags: juicer:latest # Local tag for the built image
#- name: publish to coveralls.io
#uses: coverallsapp/github-action@v1.1.2
#with:
# github-token: ${{ github.token }}