forked from rime/squirrel
-
Notifications
You must be signed in to change notification settings - Fork 8
37 lines (30 loc) · 974 Bytes
/
pull-request-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: pull request ci
on: [pull_request]
jobs:
build:
runs-on: macos-14
steps:
- name: Checkout last commit
uses: actions/checkout@v4
with:
submodules: true
- name: Install SwiftLint
run: brew install swiftlint
- name: Lint
run: swiftlint
- name: Configure build environment
run: |
echo git_ref_name="$(git describe --always)" >> $GITHUB_ENV
- name: Build Squirrel
run: ./action-build.sh package
- name: Install periphery
run: brew install peripheryapp/periphery/periphery
- name: Check Unused Code
run: periphery scan --relative-results --skip-build --index-store-path build/Index.noindex/DataStore
- name: Upload Squirrel artifact
uses: actions/upload-artifact@v4
with:
name: Squirrel-${{ env.git_ref_name }}.zip
path: package/*.pkg
# keep 30 days
retention-days: 30