Skip to content

Commit

Permalink
Create cbuild.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
silas-wr authored Jun 21, 2024
1 parent 2bffc0a commit 52665d2
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/cbuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: C Project Build

on:
workflow_dispatch:

jobs:
build_c:
name: build c project
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build Our Project
run: |
gcc crate/main.c -o crate/crate.out
- name: Commit Project
uses: EndBug/add-and-commit@v9.1.4
with:
author_name: Silas Wrinker
author_email: alcosojr79@gmail.com
message: Built project

0 comments on commit 52665d2

Please sign in to comment.