mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-16 18:23:53 +01:00
21 lines
319 B
YAML
21 lines
319 B
YAML
# .github/workflows/sidestore-project.yml
|
|
name: SideStore Project
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: tuist/tuist-action@0.13.0
|
|
with:
|
|
command: 'build'
|
|
arguments: ''
|
|
|