Skip to content

build(deps): bump actions/upload-artifact from 4.3.1 to 4.3.3 (#76) #291

build(deps): bump actions/upload-artifact from 4.3.1 to 4.3.3 (#76)

build(deps): bump actions/upload-artifact from 4.3.1 to 4.3.3 (#76) #291

Workflow file for this run

name: CI

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

you may only define one of `branches` and `branches-ignore` for a single event
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
branches-ignore:
- 'dependabot/**'
concurrency:
group: "build"
cancel-in-progress: true
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
- name: set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
check-latest: true
java-version: 21
cache: 'gradle'
- name: Validate gradle wrapper
uses: gradle/wrapper-validation-action@v1
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest
- name: Create local properties
env:
LOCAL_PROPERTIES: ${{ secrets.LOCAL_PROPERTIES }}
run: echo "$LOCAL_PROPERTIES" | base64 --decode > local.properties
- name: Run detekt
run: ./gradlew detektAll
- name: Build
run: ./gradlew assemble --stacktrace --no-configuration-cache
- name: Unit tests
run: ./gradlew allTests --stacktrace --no-configuration-cache