remove value_cell_name fn for a simple match on offset_cell_name result #375
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: [ push, pull_request ] | |
jobs: | |
rust: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
toolchain: | |
- "1.73" # MSRV | |
- stable | |
- beta | |
- nightly | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
- name: Toolchain version | |
run: | | |
cargo -vV | |
rustc -vV | |
- name: Build | |
run: | | |
cargo build | |
- name: Run tests | |
run: | | |
cargo test --features dates | |
- name: Install rustfmt | |
uses: dtolnay/rust-toolchain@master | |
if: ${{ matrix.toolchain == 'stable' }} | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
components: rustfmt | |
- name: Format checks | |
if: ${{ matrix.toolchain == 'stable' }} | |
run: | | |
cargo fmt -- --check |