Skip to content

Commit

Permalink
Added workflow to check if library's building
Browse files Browse the repository at this point in the history
  • Loading branch information
srgtuszy committed Oct 12, 2024
1 parent 11dde4c commit 375bff7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/buld_library.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build Library

on:
push:
branches:
- '**'

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Source Code
uses: actions/checkout@v3

- name: Install Swift
uses: fwal/setup-swift@v1
with:
swift-version: '6.0'

- name: Build with Swift Package Manager
run: swift build

0 comments on commit 375bff7

Please sign in to comment.