[🤖] Add ^ Postfix Operator for Suffix String Matching
#38
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: Swift | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Get Sources | |
| uses: actions/checkout@v2 | |
| - name: Build Package | |
| run: swift build -v | |
| - name: Test | |
| run: swift test -v | |