Skip to content

Version bumped to 3.3.1 #75

Version bumped to 3.3.1

Version bumped to 3.3.1 #75

name: CI
on: [push, workflow_dispatch]
jobs:
build:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
strategy:
matrix:
os: ["macos-latest"]
swift: ["5.10"]
runs-on: ${{ matrix.os }}
steps:
- name: Extract Branch Name
run: echo "BRANCH=$(echo ${GITHUB_REF##*/})" >> $GITHUB_ENV
- uses: swift-actions/setup-swift@v2
with:
swift-version: ${{ matrix.swift }}
- name: Get swift version
run: swift --version
- uses: actions/checkout@v2
- name: Build
run: swift build
- name: Run tests
run: swift test
- uses: 8398a7/action-slack@v3
if: failure() && env.BRANCH == 'main'
with:
status: failure
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}