Skip to content

Commit

Permalink
create workflow (#16)
Browse files Browse the repository at this point in the history
* create workflow
  • Loading branch information
cp-divyesh-v authored Jan 16, 2024
1 parent 7d742ef commit 4dd8f44
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build_package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: build_package

run-name: build

on: [push]

jobs:
build:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: swift-actions/setup-swift@65540b95f51493d65f5e59e97dcef9629ddf11bf
- uses: actions/checkout@v4
- name: Build
run: swift build
- name: Run tests
run: swift test

0 comments on commit 4dd8f44

Please sign in to comment.