Skip to content

Update pre-make.yml

Update pre-make.yml #3

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: download premake
run: |
wget https://github.com/premake/premake-core/releases/download/v5.0.0-beta2/premake-5.0.0-beta2-linux.tar.gz
- name: exstract
run: tar -xf premake-5.0.0-beta2-linux.tar.gz
- name: make check
run: make check
- name: make distcheck
run: make distcheck