mirror of
https://github.com/home-assistant/iOS.git
synced 2026-06-18 02:46:38 -05:00
<!-- Thank you for submitting a Pull Request and helping to improve Home Assistant. Please complete the following sections to help the processing and review of your changes. Please do not delete anything from this template. --> ## Summary <!-- Provide a brief summary of the changes you have made and most importantly what they aim to achieve --> Done by a tool: * https://github.com/Skipants/update-action-pins ## Screenshots <!-- If this is a user-facing change not in the frontend, please include screenshots in light and dark mode. --> ## Link to pull request in Documentation repository <!-- Pull requests that add, change or remove functionality must have a corresponding pull request in the Companion App Documentation repository (https://github.com/home-assistant/companion.home-assistant). Please add the number of this pull request after the "#" --> Documentation: home-assistant/companion.home-assistant# ## Any other notes <!-- If there is any other information of note, like if this Pull Request is part of a bigger change, please include it here. -->
24 lines
514 B
YAML
24 lines
514 B
YAML
name: Push CI
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'Sources/PushServer/**'
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'Sources/PushServer/**'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: fwal/setup-swift@682457186b71c25a884c45c06f859febbe259240 # v2.3.0
|
|
with:
|
|
swift-version: "5.8"
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
- name: Run Tests
|
|
run: swift test
|
|
working-directory: Sources/PushServer
|