Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/silly-cows-sing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
---

CI and README only — one workflow per platform, each named for the platform it
covers, and a badge row that says which three CI actually proves. No package
change, so no release.
28 changes: 28 additions & 0 deletions .github/workflows/ci-android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Android

on:
push:
branches:
- main
paths-ignore:
- "README.md"
- "CODE_OF_CONDUCT.md"
- ".editorconfig"
- ".spi.yml"
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
linux-android:
name: Test Android
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v6
- name: "Test Swift Package on Android"
uses: skiptools/swift-android-action@v2
with:
swift-version: "6.3"
8 changes: 3 additions & 5 deletions .github/workflows/ci.yml → .github/workflows/ci-apple.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
name: CI
name: Apple

on:
push:
# branches:
# - main
branches:
- main
paths-ignore:
- 'README.md'
- 'CODE_OF_CONDUCT.md'
- '.editorconfig'
- '.spi.yml'
pull_request:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
Expand Down
34 changes: 34 additions & 0 deletions .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Linux

on:
push:
branches:
- main
paths-ignore:
- "README.md"
- "CODE_OF_CONDUCT.md"
- ".editorconfig"
- ".spi.yml"
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
linux_test:
name: Test Linux
runs-on: ubuntu-latest
container:
image: swift:${{matrix.swift-version}}
timeout-minutes: 30
strategy:
matrix:
swift-version:
- "6.2"
steps:
- name: Checkout
uses: actions/checkout@v6
- run: swift --version
- name: Test
run: swift test
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[![Apple](https://github.com/germ-network/AtprotoTypes/actions/workflows/ci-apple.yml/badge.svg)](https://github.com/germ-network/AtprotoTypes/actions/workflows/ci-apple.yml)
[![Linux](https://github.com/germ-network/AtprotoTypes/actions/workflows/ci-linux.yml/badge.svg)](https://github.com/germ-network/AtprotoTypes/actions/workflows/ci-linux.yml)
[![Android](https://github.com/germ-network/AtprotoTypes/actions/workflows/ci-android.yml/badge.svg)](https://github.com/germ-network/AtprotoTypes/actions/workflows/ci-android.yml)

This library provides types corresponding to [atproto](https://atproto.com) type definitions.


Expand Down
Loading