Merge pull request #490 from udo-munk/dev #54
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 libjpeg-turbo8-dev 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: . | |