Skip to content

'Text file busy' fix #195

'Text file busy' fix

'Text file busy' fix #195

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [
ubuntu-latest,
macos-latest,
windows-latest,
]
toolchain: [
stable,
]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Go Toolchain
uses: actions/setup-go@v3
with:
go-version: '=1.18.0'
- name: Rust Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
- name: Cargo Test
uses: actions-rs/cargo@v1
env:
RUST_BACKTRACE: 1
with:
command: test
args: -- --nocapture