Transition to Cocoapods PM (#199) #218
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 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 |