Skip to content

Commit

Permalink
Merge branch 'feat/http-proxy' of github.com:jdockerty/gruglb into fe…
Browse files Browse the repository at this point in the history
…at/http-proxy
  • Loading branch information
jdockerty committed Nov 7, 2023
2 parents 7448e2f + 7686bcf commit a12e83e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Rust

on:
push:
env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43 # v2
- name: Format
run: cargo fmt --all --check
- name: Lint
run: cargo clippy -- -D warnings
- name: Build
run: cargo build
- name: Test
run: cargo test

0 comments on commit a12e83e

Please sign in to comment.