Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce GitHub Actions workflow for linting and building #1

Merged
merged 3 commits into from
Mar 3, 2024
Merged

Commits on Mar 3, 2024

  1. chore: add GitHub Actions workflow to lint and build

    `.github/workflows/build.yml` runs `rustfmt` and `cargo test` when
    commits are pushed to the repository, or a PR is made to `main` branch.
    kikuomax committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    47f1ce6 View commit details
    Browse the repository at this point in the history
  2. chore(gha): fix strategy matrix syntax

    Fixes the error that `os` variable in the strategy matrix was a single
    value while an array was expected.
    kikuomax committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    0592eff View commit details
    Browse the repository at this point in the history
  3. chore(gha): remove --locked from cargo test

    Removes `--locked` option from `cargo test` because `Cargo.lock` is not
    pushed to the repository for now.
    kikuomax committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    d2c22bf View commit details
    Browse the repository at this point in the history