This repository has been archived by the owner on Sep 29, 2024. It is now read-only.
Convert encryption tests to proper unit tests #98
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit Tests | |
on: | |
push: | |
branches: | |
- "master" | |
paths-ignore: | |
- "*.md" | |
pull_request: | |
types: [ opened, synchronize ] | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
jobs: | |
run_tests: | |
name: Run tests | |
runs-on: macos-12 | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Run tests | |
run: | | |
swift test |