Skip to content

Commit

Permalink
Add ubuntu test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
0xLeif committed Jan 23, 2024
1 parent 59d855a commit 6328453
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# 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: Ubuntu

on:
push:
branches: ["**"]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: swift-actions/setup-swift@v1
- uses: actions/checkout@v3
- name: Build for release
run: swift build -v -c release
- name: Test
run: swift test -v

0 comments on commit 6328453

Please sign in to comment.