Skip to content

Merge pull request #17 from Joaopmorais/lifetime #54

Merge pull request #17 from Joaopmorais/lifetime

Merge pull request #17 from Joaopmorais/lifetime #54

Workflow file for this run

# name: Rustlings Tests
# on:
# push:
# branches: [ main ]
# pull_request:
# branches: [ main ]
# env:
# CARGO_TERM_COLOR: always
# jobs:
# fmt:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: dtolnay/rust-toolchain@stable
# with:
# components: rustfmt
# - uses: DavidAnson/markdownlint-cli2-action@v9
# with:
# globs: "exercises/**/*.md"
# - name: Run cargo fmt
# run: |
# cargo fmt --all -- --check
# test:
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os: [ubuntu-latest, windows-latest, macOS-latest]
# steps:
# - uses: actions/checkout@v3
# - uses: dtolnay/rust-toolchain@stable
# - uses: swatinem/rust-cache@v2
# - name: Run cargo test
# run: |
# cargo test