Skip to content

changes

changes #8

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install xmake
run: |
curl -fsSL https://xmake.io/shget.text | bash
- name: Configure and build
run: |
xmake f -m debug
xmake
-y
- name: Run tests
run: |
xmake run test