Test github action makefile.yml #1
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", "test-ci" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: apt-get update && apt-get install -y build-essential ccache libgc-dev graphviz libunwind-dev libreadline-dev pkg-config | |
- name: Install dependencies | |
run: make | |
- name: Run check | |
run: make check |