Skip to content

fix: macos code signing #37

fix: macos code signing

fix: macos code signing #37

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

No steps defined in `steps` and no workflow called in `uses` for the following jobs: prepare
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
prepare:
name: Prepare
runs-on: ubuntu-latest
if: ${{ !startsWith(github.head_ref, 'release/v') }}
lint:
name: Lint App
uses: ./.github/workflows/lint.yml
needs: prepare
tests:
name: Tests
uses: ./.github/workflows/test.yml
needs: lint
build:
name: Build
uses: ./.github/workflows/build.yml
needs: tests