Adding brokerage and brokerage account #26
Workflow file for this run
This file contains hidden or 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: Build and test on macOS and Ubuntu | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build-and-test-macos: | |
| runs-on: macos-13 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Build on macOS | |
| run: swift build | |
| - name: Test on macOS | |
| run: swift test | |
| build-and-test-ubuntu: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Swift on Ubuntu | |
| uses: fwal/setup-swift@v1 | |
| with: | |
| swift-version: '5.9' | |
| - name: Build on Ubuntu | |
| run: swift build | |
| - name: Test on Ubuntu | |
| run: swift test |