chore: remove casks #58
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 OSX | |
on: push | |
jobs: | |
test: | |
name: Test UP config | |
runs-on: macos-latest # macOS Catalina 10.15 | |
steps: | |
- name: Virtual env info | |
run: | | |
system_profiler SPSoftwareDataType | |
- name: Create workspace | |
run: | | |
mkdir -p ~/.up; cd ~/.up; | |
- name: Fetch Commit | |
run: | | |
curl -L "https://github.com/juliantellez/up/tarball/${GITHUB_SHA}" | tar -xzv --strip-components 1 &> /dev/null; | |
- name: Install and Run UP | |
run: | | |
# Setup Test env | |
defaults write -g AppleLanguages '("en-GB")'; | |
export TERM=xterm-256color; | |
export UP_ENV="development"; | |
export GIT_USERNAME="foo" | |
export GIT_EMAIL="[email protected]" | |
# Install | |
sh bootstrap.sh |