Skip to content

feat: add github workflow to auto release, bump up version number #2

feat: add github workflow to auto release, bump up version number

feat: add github workflow to auto release, bump up version number #2

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
name: cargo build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo build
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test