Skip to content

Refactor code

Refactor code #22

Workflow file for this run

name: build-test-lint
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-test-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build
- name: Test
run: cargo test
- name: Lint
run: cargo clippy