Skip to content

Bump mikepenz/action-junit-report from 3 to 4 #105

Bump mikepenz/action-junit-report from 3 to 4

Bump mikepenz/action-junit-report from 3 to 4 #105

Workflow file for this run

name: Fastlane Tests
on:
pull_request:
jobs:
build:
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- name: Use sample configuration
run: cp BeeSwift/Config.swift.sample BeeKit/Config.swift
- name: Setup ruby and install gems
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7.2'
bundler-cache: true
- name: Run tests
run: bundle exec fastlane test
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: always() # always run even if the previous step fails
with:
report_paths: 'fastlane/test_output/report.junit'