mirror of
https://github.com/Finb/Bark.git
synced 2025-12-08 21:36:01 +00:00
37 lines
645 B
YAML
37 lines
645 B
YAML
name: Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Select Xcode Version
|
|
uses: maxim-lobanov/setup-xcode@v1
|
|
with:
|
|
xcode-version: latest-stable
|
|
|
|
- name: Setup ruby
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: 2.7.2
|
|
bundler-cache: true
|
|
|
|
- name: Install Pods
|
|
run: pod install
|
|
|
|
- name: Run Tests
|
|
run: |
|
|
export LC_ALL=en_US.UTF-8
|
|
export LANG=en_US.UTF-8
|
|
bundle exec fastlane tests |