Skip to content

Commit

Permalink
CI on linux build let's go
Browse files Browse the repository at this point in the history
  • Loading branch information
counter185 committed Sep 15, 2024
1 parent 6366ff7 commit c22880f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: C/C++ CI

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

jobs:
build:

runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4

- name: make
run: make
working-directory: ${{env.GITHUB_WORKSPACE}}/gcc-build

- name: Push build artifacts
uses: actions/upload-artifact@v4
with:
name: voidsprite-build-linux
path: |
gcc-build/build

0 comments on commit c22880f

Please sign in to comment.