Skip to content

Commit

Permalink
Create c-cpp.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfloltk authored Dec 21, 2023
1 parent 4538179 commit c37f9a8
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Makefile CI

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

jobs:
build:

runs-on: ubuntu-latest
container: devkitpro/devkita64:latest

steps:
- uses: actions/checkout@v3

- name: make clean
run: |
make clean
- name: final
run: |
make
- uses: actions/upload-artifact@master
with:
name: nxmp
path: build

0 comments on commit c37f9a8

Please sign in to comment.