Skip to content

Commit

Permalink
switch travis ci to github ci
Browse files Browse the repository at this point in the history
  • Loading branch information
lorepozo committed Dec 14, 2023
1 parent 7f00043 commit 9d6faa0
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 27 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Cargo Build & Test

on:
push:
pull_request:

env:
CARGO_TERM_COLOR: always

jobs:
build_and_test:
name: Rust project - latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup update stable && rustup default stable
- run: cargo build --verbose
- run: cargo test --verbose
- run: cargo test --verbose -- --ignored
- run: cargo fmt --check
- run: cargo clippy --all-targets -- -D warnings
- run: cargo rustdoc --verbose -- --html-in-header rustdoc-include-katex-header.html
env:
RUSTDOCFLAGS: -Dwarnings
26 changes: 0 additions & 26 deletions .travis.yml

This file was deleted.

1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# program-induction

[![Build Status](https://travis-ci.org/lorepozo/program-induction.svg?branch=master)](https://travis-ci.org/lorepozo/program-induction)
[![crates.io](https://img.shields.io/crates/v/programinduction.svg)](https://crates.io/crates/programinduction)
[![docs.rs](https://docs.rs/programinduction/badge.svg)](https://docs.rs/programinduction)

Expand Down

0 comments on commit 9d6faa0

Please sign in to comment.