ENH: Add the julia command. #49
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: Test commands | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: r-lib/actions/setup-r@v2 | |
- name: make and run | |
run: | | |
sudo apt-get -y update && sudo apt-get -y install lsb-release | |
lsb_release -irc | |
echo "Installing vfgen" | |
sudo apt-get -y install cmake libmxml-dev libginac-dev | |
cd cmake_build | |
cmake ../src | |
make | |
make install | |
cd ../tests | |
sudo bash run_ci_tests.sh |