Skip to content

chore: Release next-rust-release-date version 0.2.2 #29

chore: Release next-rust-release-date version 0.2.2

chore: Release next-rust-release-date version 0.2.2 #29

Workflow file for this run

name: CI
on:
- push
- pull_request
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: ${{ matrix.os }} (${{ matrix.rust }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
rust:
- "1.71"
- stable
# https://github.com/actions/virtual-environments#available-environments
os:
- ubuntu-latest
- windows-latest
- macOS-latest
steps:
- uses: actions/checkout@v6
- name: install ${{ matrix.rust }} toolchain
run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
- run: cargo build