Skip to content

Commit

Permalink
v0.0.2 (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
perseusrealdeal authored Oct 4, 2024
1 parent e58e21c commit cf3e1c7
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 42 deletions.
65 changes: 43 additions & 22 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,50 +1,40 @@
name: 'Tests'
# .github/workflows/main.yml
name: 'Build & Tests'

on:
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# schedule:
# - cron: '5 5 * * 5'

jobs:
unit-testing-iOS:

macOS-build:
runs-on: macos-14
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Select Xcode 15.4
run: sudo xcode-select -s "/Applications/Xcode_15.4.app"
- name: Show xcodebuild version
run: xcodebuild -version
- name: Show xcode embedded SDKs
run: xcodebuild -showsdks
- name: Show buildable schemes
run: xcodebuild -list
- uses: mxcl/xcodebuild@v1.9.2
- uses: mxcl/xcodebuild@v3.3
with:
platform: iOS
platform: macOS
scheme: 'ConsolePerseusLogger'
action: test
action: build
code-coverage: true
verbosity: xcpretty
upload-logs: always

unit-testing-macOS:
macOS-test:
runs-on: macos-14
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Select Xcode 15.4
run: sudo xcode-select -s "/Applications/Xcode_15.4.app"
- name: Show xcodebuild version
run: xcodebuild -version
- name: Show xcode embedded SDKs
run: xcodebuild -showsdks
- name: Show buildable schemes
run: xcodebuild -list
- uses: mxcl/xcodebuild@v1.9.2
- uses: mxcl/xcodebuild@v3.3
with:
platform: macOS
scheme: 'ConsolePerseusLogger'
Expand All @@ -53,3 +43,34 @@ jobs:
verbosity: xcpretty
upload-logs: always

iOS-build:
runs-on: macos-14
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Select Xcode 15.4
run: sudo xcode-select -s "/Applications/Xcode_15.4.app"
- uses: mxcl/xcodebuild@v3.3
with:
platform: iOS
scheme: 'ConsolePerseusLogger'
action: build
code-coverage: true
verbosity: xcpretty
upload-logs: always

iOS-test:
runs-on: macos-14
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Select Xcode 15.4
run: sudo xcode-select -s "/Applications/Xcode_15.4.app"
- uses: mxcl/xcodebuild@v3.3
with:
platform: iOS
scheme: 'ConsolePerseusLogger'
action: test
code-coverage: true
verbosity: xcpretty
upload-logs: always
22 changes: 5 additions & 17 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,15 @@
# Changelog

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).<br/>

- Dates in this file meets Gregorian calendar. Date in format YYYY-MM-DD.
Dates in this file meets Gregorian calendar. Date in format YYYY-MM-DD.

## [0.1.0] - [Unreleased], Developer Release
## [0.0.2] - [2024-10-04], GitHub CI update

### Added

- Feature (#NN).
- Feature (#NN).
- Option (#NN).
- Screen (#NN).
- Fun Spec (#NN)

### Security

- To keep Something in safe (#NN).

### Changed
### ADDED

- Project specifics (#NN).
- Github CI update for script [main.yml](/.github/workflows/main.yml).

## [0.0.1] - [2024-10-03], Developer Beginning Release

Expand Down
2 changes: 1 addition & 1 deletion ConsolePerseusLoggerSingle.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// ConsolePerseusLoggerSingle.swift
// Version: 0.0.1
// Version: 0.0.2
//
// Created by Mikhail Zhigulin in 7531.
//
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// swift-tools-version:5.7

/* Package.swift
Version: 0.0.1
Version: 0.0.2

Created by Mikhail Zhigulin in 7533.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Actions Status](https://github.com/perseusrealdeal/ConsolePerseusLogger/actions/workflows/main.yml/badge.svg)](https://github.com/perseusrealdeal/ConsolePerseusLogger/actions/workflows/main.yml)
[![Style](https://github.com/perseusrealdeal/ConsolePerseusLogger/actions/workflows/swiftlint.yml/badge.svg)](https://github.com/perseusrealdeal/ConsolePerseusLogger/actions/workflows/swiftlint.yml)
[![Version](https://img.shields.io/badge/Version-0.0.1-green.svg)](/CHANGELOG.md)
[![Version](https://img.shields.io/badge/Version-0.0.2-green.svg)](/CHANGELOG.md)
[![Platforms](https://img.shields.io/badge/Platforms-macOS%2010.13+_|_iOS%2011.0+-orange.svg)](https://en.wikipedia.org/wiki/List_of_Apple_products)
[![Xcode 14.2](https://img.shields.io/badge/Xcode-14.2+-red.svg)](https://en.wikipedia.org/wiki/Xcode)
[![Swift 5.7](https://img.shields.io/badge/Swift-5.7-red.svg)](https://www.swift.org)
Expand Down

0 comments on commit cf3e1c7

Please sign in to comment.