Skip to content

Added diamond pixel style #129

Added diamond pixel style

Added diamond pixel style #129

Workflow file for this run

# 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: Build and run tests
on: [ push, pull_request ]
jobs:
macos_tests:
name: Unit tests on macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: swift build -v -c release
- name: Run tests
run: swift test -v -c release
# ios_tests:
# name: Unit tests on iOS
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v3
# - name: Run tests on iOS
# run: xcodebuild -scheme QRCode test -destination "platform=iOS Simulator,name=iPhone SE (3rd generation),OS=latest"