Skip to content

Commit

Permalink
Move checkout action to main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Widcket committed Aug 15, 2023
1 parent 8c1b570 commit 90fd371
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .github/actions/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ runs:
using: composite
shell: bash -euo pipefail
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set Ruby version
run: ruby -e 'puts RUBY_VERSION' | tee .ruby-version
- name: Set up Ruby
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ on:
[push]
jobs:
ios:
name: Build and test on iOS
name: iOS
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: ./.github/actions/test
with:
xcode: '14.2'
Expand Down

0 comments on commit 90fd371

Please sign in to comment.