Encryption compliance declaration #381
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: Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test | |
run: | | |
set -ex | |
brew install --HEAD colima | |
brew install docker docker-compose qemu | |
colima start --network-address --arch x86_64 | |
docker-compose up --detach | |
swift test |