Skip to content

Commit

Permalink
Merge pull request #104 from rust-lang/gha
Browse files Browse the repository at this point in the history
Switch from Travis CI to GitHub Actions
  • Loading branch information
pietroalbini committed Dec 7, 2020
2 parents d66f476 + 8571ca1 commit 27fed98
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 9 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---

name: CI
on: [push, pull_request]

jobs:
test:
name: Test
runs-on: ubuntu-latest
env:
LZMA_API_STATIC: 1
steps:
- name: Checkout the source code
uses: actions/checkout@v2

- name: Install Rust stable
run: rustup toolchain update stable && rustup default stable

- name: Build the tool
run: cargo build

- name: Execute the test suite
run: ./test.sh
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

0 comments on commit 27fed98

Please sign in to comment.