Skip to content

Merge pull request #59 from dewert99/single_field_target #98

Merge pull request #59 from dewert99/single_field_target

Merge pull request #59 from dewert99/single_field_target #98

Workflow file for this run

on: [push, pull_request]
name: Check & Test
jobs:
check:
name: Check
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.53.0
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: false
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- run: cargo +nightly update -Z minimal-versions
- uses: actions-rs/cargo@v1
with:
command: check
test:
name: Test Suite
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.75.0
# It's useful to test applications of these macros to newer features so using 1.53 for tests doesn't work
# This needs to be locked to a specific version of Rust since the exact error messages may change
# When switching this Rust version make sure to also update tests to use newer error messages if applicable
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- uses: actions-rs/cargo@v1
with:
command: test