Skip to content

ci: Update cxx xmake example #148

ci: Update cxx xmake example

ci: Update cxx xmake example #148

Workflow file for this run

name: CI # Continuous Integration
on:
push:
branches:
- main
pull_request:
jobs:
build-and-test:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: latest
- name: Build
run: make build
- name: Test
run: |
make run
make test