Merge pull request #476 from udo-munk/dev #44
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: Makefile CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt install libglu1-mesa-dev | |
- name: Build binaries | |
run: make | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v4.3.4 | |
with: | |
name: z80pack-ubuntu | |
path: . | |