Skip to content

Disable actor system tests on CI #23

Disable actor system tests on CI

Disable actor system tests on CI #23

Workflow file for this run

name: Swift
on: [push]
jobs:
build:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
timeout-minutes: 30
strategy:
matrix:
os: [ubuntu-latest]
swift: ["6.1"]
runs-on: ${{ matrix.os }}
steps:
- uses: vapor/swiftly-action@v0.2
with:
toolchain: ${{ matrix.swift }}
- uses: erlef/setup-beam@v1
with:
otp-version: '28'
- uses: actions/checkout@v4
with:
submodules: true
- name: Start EPMD
run: epmd -daemon
- name: Build
run: swift build
- name: Run ETF tests
run: swift test --filter ErlangActorSystemTests.ETFTests.
# - name: Run ErlangActorSystem tests
# run: swift test --filter ErlangActorSystemTests.ErlangActorSystemTests.