Skip to content

Use correct unit tests module name (#200) #221

Use correct unit tests module name (#200)

Use correct unit tests module name (#200) #221

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: Cache Mint
id: cache-mint
uses: actions/cache@v3
with:
path: ~/mint_cache
key: cache
- name: Generate project and run tests
run: |
export PATH=~/.rbenv/shims:"$PATH"
brew install cookiecutter rbenv mint &&
rbenv install 2.7.7 && rbenv global 2.7.7 &&
cookiecutter --no-input -f . &&
cd Project &&
make test