Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aarikpokras authored Dec 20, 2023
1 parent 3932919 commit b0d119c
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: C++

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

jobs:
Linux:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build
run: g++ -o thxgen thxgen-c.cpp
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Linux
path: thxgen
macOS:

runs-on: macos-latest

steps:
- uses: actions/checkout@v4
- name: Build
run: g++ -o thxgen thxgen-c.cpp
- name: Upload
uses: actions/upload-artifact@v4
with:
name: macOS
path: thxgen

0 comments on commit b0d119c

Please sign in to comment.