Skip to content

Feature: Add GitHub actions #2

Feature: Add GitHub actions

Feature: Add GitHub actions #2

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
run-tests:
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
- name: Run tests
run: bundle exec fastlane test_all