Skip to content

Commit

Permalink
Merge pull request #16 from slide-rs/ci
Browse files Browse the repository at this point in the history
CI / Maintenance
  • Loading branch information
torkleyy authored Oct 8, 2021
2 parents 2efac72 + 9e22c39 commit 0cceccf
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 35 deletions.
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* text auto

*.rs diff=rust

*.png binary
20 changes: 20 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Rust

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

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
32 changes: 0 additions & 32 deletions .travis.yml

This file was deleted.

3 changes: 0 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
Atom
====

[![Build Status](https://travis-ci.org/slide-rs/atom.svg?branch=master)](https://travis-ci.org/slide-rs/atom)
[![Atom](http://meritbadge.herokuapp.com/atom)](https://crates.io/crates/atom)

`Atom` is a simple abstraction around Rust's `AtomicPtr`. It provides a simple, wait-free way to exchange
data between threads safely. `Atom` is built around the principle that an atomic swap can be used to
safely emulate Rust's ownership.
Expand Down

0 comments on commit 0cceccf

Please sign in to comment.