Skip to content

use the github asset url information #96

use the github asset url information

use the github asset url information #96

Workflow file for this run

name: Buckle Linux CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
components: rustfmt, clippy
- name: Build
run: cargo build
- name: Test
run: cargo test
- name: Lint
run: cargo clippy