Skip to content

Start Over and reconsider how I want to approach the LeNet + MNIST #18

Start Over and reconsider how I want to approach the LeNet + MNIST

Start Over and reconsider how I want to approach the LeNet + MNIST #18

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: Swift
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: macos-latest
steps:
- name: Install Swift
uses: tayloraswift/swift-install-action@master
with:
swift-prefix: "swift-6.0-release/xcode/swift-6.0-RELEASE"
swift-id: "swift-6.0-RELEASE"
- name: Check Swift
run: swift --version
- uses: actions/checkout@v4
- name: Build
run: swift build -v
- name: Run tests
run: swift test