Skip to content

Fix bug where cross-month events are not shown in week events list #93

Fix bug where cross-month events are not shown in week events list

Fix bug where cross-month events are not shown in week events list #93

Workflow file for this run

name: On pull request
on: pull_request
jobs:
test:
name: Test
runs-on: macos-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Checkout
uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: ${{ runner.os }}-gems-
- uses: actions/cache@v2
with:
path: Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: ${{ runner.os }}-pods-
- name: Install
run: |
cp mock-Secrets.plist the-blue-alliance-ios/Secrets.plist
bundle install
bundle exec pod install --repo-update
bundle exec fastlane run setup_ci
bundle exec fastlane setup_secrets
env:
TBA_API_KEY: ${{ secrets.TBA_API_KEY }}
- name: fastlane test
run: bundle exec fastlane test