Skip to content

Commit

Permalink
Migrate to github Actions (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
CasualX authored Feb 8, 2021
1 parent 8fb1668 commit ea9de4c
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 10 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: CI

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

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly

steps:
- name: Checkout sources
uses: actions/checkout@v2

- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
default: true

- name: Quick check
uses: actions-rs/cargo@v1
with:
command: check

- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test

# Run tests again in Release mode to attempt to catch UB
- name: Run tests (Release)
uses: actions-rs/cargo@v1
with:
command: test
args: --release
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ String Obfuscation
[![MIT License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![crates.io](https://img.shields.io/crates/v/obfstr.svg)](https://crates.io/crates/obfstr)
[![docs.rs](https://docs.rs/obfstr/badge.svg)](https://docs.rs/obfstr)
[![Build Status](https://travis-ci.org/CasualX/obfstr.svg?branch=master)](https://travis-ci.org/CasualX/obfstr)
[![Build status](https://github.com/CasualX/obfstr/workflows/CI/badge.svg)](https://github.com/CasualX/obfstr/actions)

Compiletime string constant obfuscation for Rust.

Expand Down

0 comments on commit ea9de4c

Please sign in to comment.