Skip to content

Refactor: Handle entry type in different method #58

Refactor: Handle entry type in different method

Refactor: Handle entry type in different method #58

Workflow file for this run

name: Build
on:
pull_request:
branches:
- '*'
push:
branches:
- '*'
jobs:
build_test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
toolchain: [stable, beta, nightly]
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Set up Rust
uses: actions/[email protected]
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
- name: Install dependencies
run: cargo fetch
- name: Build and Test
run: cargo build --verbose && cargo test --verbose