Skip to content

Update makecheck.yml #26

Update makecheck.yml

Update makecheck.yml #26

Workflow file for this run

name: 📝 Make Build Check
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
run:
name: 📝 Make Build Check
runs-on: ubuntu-latest # linux required if you want to use docker
# Check if latest commit changed a .c file
if: ${{contains(github.event.head_commit.modified, '.c') || contains(github.event.head_commit.modified, '.h')}}
container:
image: walkero/docker4amigavbcc:latest-m68k
volumes:
- '${{ github.workspace }}:/opt/code'
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v2
- name: 🏃 Running Make
run: make