Skip to content

Commit

Permalink
Build scraper on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
connorslade committed Oct 18, 2023
1 parent 3a6831d commit 3843c5b
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 @@
name: Build

on: [push, pull_request]

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install Nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
default: true
override: true

- name: build
run: cargo build

0 comments on commit 3843c5b

Please sign in to comment.