Skip to content

Refactored string build to make use of fold instead of map and collect. #105

Refactored string build to make use of fold instead of map and collect.

Refactored string build to make use of fold instead of map and collect. #105

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose