Skip to content

Commit

Permalink
mejorar version
Browse files Browse the repository at this point in the history
  • Loading branch information
Ing-Brayan-Martinez committed Jun 30, 2024
1 parent 05b48c9 commit 05cf510
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift

name: Swift
name: Swift Continuous Integration

on:
push:
Expand All @@ -18,8 +18,19 @@ jobs:
- name: Clone source code
uses: actions/checkout@v4

- name: Install Swift
uses: slashmo/[email protected]
with:
version: 5.9.0

- name: Get swift version
run: swift --version

- name: Install dependencies
run: swift package update

- name: Build
run: swift build -v
run: swift build

- name: Run tests
run: swift test -v
run: swift test

0 comments on commit 05cf510

Please sign in to comment.