Skip to content

Update Github Actions file #226

Update Github Actions file

Update Github Actions file #226

Workflow file for this run

name: "Build project and run tests"
on: [push]
jobs:
test:
runs-on: macos-14
env:
MINT_PATH: "~/mint_cache"
steps:
- uses: actions/checkout@v1
- name: Generate project and run tests
run: |
export PATH=~/.rbenv/shims:"$PATH"
brew install cookiecutter rbenv &&
rbenv install &&
cookiecutter --no-input -f . &&
cd Project &&
make test