15 lines
348 B
YAML
15 lines
348 B
YAML
on: [push]
|
|
jobs:
|
|
print-content:
|
|
runs-on: docker
|
|
steps:
|
|
- name: checkout code
|
|
uses: actions/checkout@v4
|
|
- name: formatting
|
|
run: cargo fmt -- --check
|
|
- name: lints
|
|
run: cargo clippy -- -Dwarnings
|
|
- name: cargo
|
|
run: cargo check --all-targets
|
|
- name: test
|
|
run: cargo test
|