Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuras committed Mar 23, 2024
1 parent 164daf4 commit 244cdd9
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on:
push:
branches: master
pull_request:

name: Build

jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: elan
run: |
set -o pipefail
curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | sh -s -- -y --default-toolchain none
echo "$HOME/.elan/bin" >> $GITHUB_PATH
- uses: actions/checkout@v3

- name: build
run: lake build

- name: test
run: lake exec http-client-spec

0 comments on commit 244cdd9

Please sign in to comment.