Skip to content

Commit

Permalink
Replace travis with GitHub Actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
easbar committed May 4, 2024
1 parent df54f49 commit 61c309a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 9 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt -- --check
- name: Run tests
run: cargo test --release -- --nocapture
- name: Run performance tests
run: export RUST_TEST_THREADS=1; cargo test --release -- --ignored --nocapture
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

0 comments on commit 61c309a

Please sign in to comment.