Skip to content

Commit

Permalink
BIT-2115: Start building out more build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
KatherineInCode committed Mar 20, 2024
1 parent 0dbf027 commit b6fc9b4
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Build

on:
workflow_dispatch:
workflow_dispatch:

jobs:
cloc:
Expand All @@ -19,3 +19,22 @@ jobs:
- name: Print lines of code
run: cloc --vcs git --include-lang Swift

build:
name: Build iOS app
runs-on: macos-13
steps:
- name: Print Environment
run: |
echo "GitHub ref: $GITHUB_REF"
echo "GitHub event: $GITHUB_EVENT"
- name: Check out repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
submodules: 'true'

- name: Install dependencies
run: |
./Scripts/bootstrap.sh

0 comments on commit b6fc9b4

Please sign in to comment.