Skip to content

Commit

Permalink
ci: add build workflow
Browse files Browse the repository at this point in the history
Fixes ATL-1641
  • Loading branch information
goncalo-frade-iohk committed Aug 19, 2022
1 parent 4e5cde9 commit ed1b6fa
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Build

on:
push:
branches:
- main
pull_request:
branches: [main]

jobs:
lint:
name: build
runs-on: macos-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Build
run: "swift build"
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 5.6
// swift-tools-version: 5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription
Expand Down

0 comments on commit ed1b6fa

Please sign in to comment.