Re-introduces msg & tag methods; +new trim method #18
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: Pull Request CI | |
on: | |
pull_request: | |
branches: | |
- dev | |
jobs: | |
test_oslg: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Run Tests | |
run: | | |
echo $(pwd) | |
echo $(ls) | |
docker pull nrel/openstudio:3.6.1 | |
docker run --name test --rm -d -t -v $(pwd):/work -w /work nrel/openstudio:3.6.1 | |
docker exec -t test pwd | |
docker exec -t test ls | |
docker exec -t test bundle update | |
docker exec -t test bundle exec rake | |
docker kill test |