Skip to content

Commit

Permalink
add basic ci build
Browse files Browse the repository at this point in the history
  • Loading branch information
j-white committed May 2, 2024
1 parent af5ba78 commit f65a540
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.75
- uses: Swatinem/rust-cache@v2
- name: Install Cloudflare Worker build tools
run: cargo install -q worker-build
- name: Build Worker
run: |
worker-build --release
- name: Run (Rust) unit tests
run: cargo test

0 comments on commit f65a540

Please sign in to comment.