Skip to content

Commit

Permalink
Merge pull request #12 from Wenzel/ci/github_actions
Browse files Browse the repository at this point in the history
CI: switch to Github Actions
  • Loading branch information
Wenzel committed Nov 8, 2023
2 parents d85f312 + 53454f7 commit 9362746
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 11 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,22 @@
name: CI

on:
push:
branches:
- 'master'
pull_request:

jobs:
check:
runs-on: ubuntu-22.04
strategy:
matrix:
subcommand: ['build', 'clippy', 'test']
steps:
- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@stable

- run: sudo apt-get install -y libxen-dev

- run: cargo ${{ matrix.subcommand }}
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

0 comments on commit 9362746

Please sign in to comment.