Skip to content
Draft
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
8 changes: 5 additions & 3 deletions .github/workflows/swift.yml → .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift

name: Swift
name: test

on:
push:
Expand All @@ -12,9 +12,11 @@ on:
jobs:
build:

runs-on: macos-latest

runs-on: macos-13
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0-beta'
- uses: actions/checkout@v3
- name: Build
run: swift build -v
Expand Down
5 changes: 2 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 5.7
// swift-tools-version: 5.9

import PackageDescription

Expand All @@ -18,5 +18,4 @@ let package = Package(
name: "SyntacticSugarTests",
dependencies: ["SyntacticSugar"],
path: "Tests")
]
)
])
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# Syntactic Sugar for Swift (SSS)

![example workflow](https://github.com/eligutovsky/SyntacticSugar/actions/workflows/swift.yml/badge.svg)
![example workflow](https://github.com/eligutovsky/SyntacticSugar/actions/workflows/test.yml/badge.svg)

> In computer science, syntactic sugar is syntax within a programming language that is designed to make things easier to read or to express. It makes the language "sweeter" for human use: things can be expressed more clearly, more concisely, or in an alternative style that some may prefer. [Wikipedia](https://en.wikipedia.org/wiki/Syntactic_sugar)

Expand Down