Skip to content

Trying to get coverage for dart version #116

Trying to get coverage for dart version

Trying to get coverage for dart version #116

Workflow file for this run

# This workflow will run the tests on the rust version of tictactoe
name: rust
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./tictactoe_rust
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose