Skip to content

gufo: Add support for guessing file format #21

gufo: Add support for guessing file format

gufo: Add support for guessing file format #21

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust:
- "1.75"
- "stable"
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install rust ${{ matrix.rust }}
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
components: rustfmt, clippy
- name: Build
run: cargo build
- name: Run tests
run: cargo test -- --nocapture