Add docker file for testing builds #60
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: Linux build (default SDCC) | |
on: | |
push: | |
branches: | |
- master | |
- github_actions | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- master | |
- github_actions | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v2 | |
- name: Install SDCC | |
run: sudo apt-get install -y sdcc | |
- name: Build examples | |
run: make | |
working-directory: examples |