Skip to content

build(deps): bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows #106

build(deps): bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows

build(deps): bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows #106

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
jobs:
unit-test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Run Unit Test
run: make test
unit-test-in-linux:
runs-on: ubuntu-latest
container: swift:5.4
steps:
- uses: actions/checkout@v2
- name: Run Unit Test
run: make test
integration-test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Cache bundler
uses: actions/cache@v1
with:
path: vendor/bundle
key: bundler-${{ hashFiles('Gemfile.lock') }}
restore-keys: bundler-${{ hashFiles('Gemfile.lock') }}
- name: Bundle install
run: bundle
- name: Run Integration Test
run: make integration-test