feat(install): support msvc #26
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: Build & Test | |
on: | |
pull_request: | |
branches: | |
- '*' | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Valgrind | |
run: sudo apt-get update && sudo apt-get install valgrind -y | |
- uses: actions/checkout@v3 | |
- name: Build and Test | |
run: | | |
sudo chmod -R 777 /usr/local && export MLN_TEST_RUNNER=valgrind && ./configure && make && make install && make test && export LD_LIBRARY_PATH=./lib:$LD_LIBRARY_PATH && make run |