Skip to content

Merge pull request #4 from tkhq/rno/try-using-github-summary #28

Merge pull request #4 from tkhq/rno/try-using-github-summary

Merge pull request #4 from tkhq/rno/try-using-github-summary #28

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@fb51252c7ba57d633bc668f941da052e410add48 # v1.13.0
with:
components: clippy, rustfmt
- name: Run linters
run: make -C src lint
- name: Run tests
run: make -C src test