Skip to content

test module init

test module init #128

Workflow file for this run

name: DStruct Test CI
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
build-linux:
runs-on: ubuntu-latest
defaults:
run:
working-directory: tests
steps:
- uses: actions/checkout@v3
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: branch@master
- name: set build mode
run: xmake f -m debug -y
- name: build examples|test
run: xmake -y
- name: run all test
run: xmake r
build-win:
runs-on: windows-latest
defaults:
run:
working-directory: tests
steps:
- uses: actions/checkout@v3
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: branch@master
- name: set build mode
run: xmake f -m debug -y
- name: build examples|test
run: xmake -y
- name: run all test
run: xmake r