Trying to do better about initializing after allocates #37
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Makefile tests | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout XNet | |
uses: actions/checkout@v3 | |
- name: Setup environment | |
run: | | |
echo "XNET_DIR=${GITHUB_WORKSPACE}" >> ${GITHUB_ENV} | |
- name: Build | |
run: | | |
cd ${XNET_DIR}/source | |
make CMODE=DEBUG test_simple | |
make CMODE=DEBUG test_setup | |
make CMODE=DEBUG test_nse |