Skip to content

chore: added builder pattern to BKTConfig #78

chore: added builder pattern to BKTConfig

chore: added builder pattern to BKTConfig #78

Workflow file for this run

name: Pull Request
on:
pull_request:
paths-ignore:
- '*.md'
- '.github/**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: norio-nomura/action-swiftlint@9f4dcd7fd46b4e75d7935cf2f4df406d5cae3684 # v3.2.1
with:
args: --strict
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: make build
build-example:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build example
run: make build-example
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build for testing
run: make build-for-testing
- name: Unit Test
run: make test-without-building