feat: added new action that builds the project

feat: updated actions/checkout to v3
This commit is contained in:
Serhiy Mytrovtsiy
2022-11-08 18:05:59 +01:00
parent 3d7270c946
commit 45e8165fc5
3 changed files with 23 additions and 2 deletions

21
.github/workflows/build.yaml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: build
on:
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- run: xcodebuild -scheme Stats -destination 'platform=OS X' -configuration Release archive CODE_SIGNING_ALLOWED=NO

View File

@@ -15,6 +15,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
- run: python3 Kit/scripts/i18n.py

View File

@@ -17,5 +17,5 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: norio-nomura/action-swiftlint@3.2.1