Skip to content

Update dependency swiftwasm/JavaScriptKit to from: "0.56.1" #309

Update dependency swiftwasm/JavaScriptKit to from: "0.56.1"

Update dependency swiftwasm/JavaScriptKit to from: "0.56.1" #309

Workflow file for this run

# 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: Build and Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
name: Build and Test
strategy:
matrix:
os: [macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Read Swift version
id: swift-version
run: echo "version=$(cat .swift-version)" >> "$GITHUB_OUTPUT"
- uses: swift-actions/setup-swift@v3
with:
swift-version: "${{ steps.swift-version.outputs.version }}"
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v