[go: up one dir, main page]

insta 1.24.1

A snapshot testing library for Rust
Documentation
name: Tests

on: [push]

jobs:
  test-latest:
    name: Test on Latest
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v1
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          profile: minimal
          override: true
      - name: Test
        run: make test

  test-stable:
    name: Test on 1.56.1
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v1
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: 1.56.1
          profile: minimal
          override: true
      - name: Test
        run: make test

  build-old-stable:
    name: Check on 1.51.0
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: 1.51.0
          profile: minimal
          override: true
      - name: Check
        run: cargo check --no-default-features