Skip to content

Commit

Permalink
Create makefile.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
san-ghun authored Jun 23, 2024
1 parent 3e43f70 commit 1ff992d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Makefile CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Build
run: make

- name: Re-build
run: make re

- name: Clean files
run: make clean

- name: Clean files and executable
run: make fclean

0 comments on commit 1ff992d

Please sign in to comment.