chore(deps): update to latest deps #1016
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, workflow_dispatch] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build-linux: | |
runs-on: | |
- ubuntu-latest | |
container: | |
image: ghcr.io/spmadden/irox-dev:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: CI Build | |
run: just run ci | |
build-windows: | |
runs-on: | |
- windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: CI Build | |
run: | | |
cargo install just | |
just run ci |