Skip to content

Commit

Permalink
Test with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmior committed Oct 31, 2023
1 parent bf80a08 commit bf1c8a7
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 69 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on: [push]

name: CI

jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features
- uses: actions-rs/cargo@v1
with:
command: test
65 changes: 0 additions & 65 deletions .travis.yml

This file was deleted.

2 changes: 0 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ name = "eson"
version = "0.1.0"

[badges]
appveyor = { repository = "michaelmior/eson", branch = "main", service = "github" }
travis-ci = { repository = "michaelmior/eson", branch = "main" }
maintenance = { status = "experimental" }

[dependencies]
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# eson

[![Build Status](https://travis-ci.org/michaelmior/eson.svg?branch=main)](https://travis-ci.org/michaelmior/eson)
[![Build status](https://ci.appveyor.com/api/projects/status/ovsa4d9klcextjju?svg=true)](https://ci.appveyor.com/project/michaelmior/eson)
[![CI](https://github.com/michaelmior/eson/actions/workflows/ci.yml/badge.svg)](https://github.com/michaelmior/eson/actions/workflows/ci.yml)

`eson` is a work in progress tool to extract a normalized schema from a denormalized relational schema.
The hope is that it can be useful for understanding and managing schemas of NoSQL applications.
Expand Down

0 comments on commit bf1c8a7

Please sign in to comment.