Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Commit

Permalink
Merge branch 'master' into fix-parameter-descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
mattt committed Jul 31, 2020
2 parents bf51a28 + b9c405d commit be9aafe
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: CI

on:
on:
push:
branches: [master]
pull_request:
Expand All @@ -13,6 +13,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v1
- uses: actions/cache@v2
with:
path: .build
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}
restore-keys: |
${{ runner.os }}-spm-
- name: Build and Test
run: swift test -c release
env:
Expand All @@ -27,6 +33,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v1
- uses: actions/cache@v2
with:
path: .build
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}
restore-keys: |
${{ runner.os }}-spm-
- name: Install System Dependencies
run: |
apt-get update
Expand Down

0 comments on commit be9aafe

Please sign in to comment.