Skip to content

Commit

Permalink
Add GitHub workflow to build and test
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreyc committed Oct 27, 2023
1 parent 961ab9c commit a261bfb
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Rust
on:
push:
branches:
- master
pull_request:
types:
- synchronize
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Added

* [#4](https://github.com/jeffreyc/jsondiff/pull/4)
Add GitHub workflow to build and test

### Security

* [#1](https://github.com/jeffreyc/jsondiff/pull/1)
Expand Down

0 comments on commit a261bfb

Please sign in to comment.