Add randomDistribution type method for Vector structs #63
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: Run swift tests | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
tests: | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Select xcode version | |
run: sudo xcode-select --switch /Applications/Xcode_16.2.app | |
- name: Build the package | |
run: swift build | |
- name: Run tests with swift | |
run: swift test |