Skip to content

Merge branch 'main' of https://github.com/AverseABFun/rust-pkg-gen #5

Merge branch 'main' of https://github.com/AverseABFun/rust-pkg-gen

Merge branch 'main' of https://github.com/AverseABFun/rust-pkg-gen #5

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install nightly && rustup default nightly
- run: cargo build --verbose -Z bindeps
- run: cargo test --verbose -Z bindeps
- uses: manoadamro/rust-release@v1
with:
owner: ${{ github.repository_owner }}
repo: ${{ github.repository }}
token: ${{ secrets.GITHUB_TOKEN }}