Skip to content

Use designated initializers (new update from 1999) #18

Use designated initializers (new update from 1999)

Use designated initializers (new update from 1999) #18

Workflow file for this run

name: CMake
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
container: devkitpro/devkitppc:latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Configure CMake
run: cmake -B ./build -S .
- name: Build project
run: make -C ./build
- name: Upload build results
uses: actions/upload-artifact@v3
with:
name: wiiu-hello-world
path: ./build