Skip to content

Commit

Permalink
New Github Actions CI, remove Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
milanboers committed Jan 15, 2023
1 parent 9e57640 commit b93b1d3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 16 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
name: Rust

on: [push]
on:
- pull_request
- push

jobs:
build:
test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/checkout@v2
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check
- run: rustup component add clippy
- run: cargo clippy --all-targets --all-features -- -D warnings
- run: cargo build --verbose
- run: cargo test --verbose
8 changes: 0 additions & 8 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 @@
# Rurel

[![Build Status](https://travis-ci.org/milanboers/rurel.svg?branch=master)](https://travis-ci.org/milanboers/rurel)
[![crates.io](https://img.shields.io/crates/v/rurel.svg)](https://crates.io/crates/rurel)

Rurel is a flexible, reusable reinforcement learning (Q learning) implementation in Rust.
Expand Down

0 comments on commit b93b1d3

Please sign in to comment.