Skip to content

Commit

Permalink
Setup ci
Browse files Browse the repository at this point in the history
  • Loading branch information
YushiOMOTE committed Jul 6, 2024
1 parent d8bb251 commit 7aaad49
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 24 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Main

on:
- push
- pull_request

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
rust: [stable, beta, nightly]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@master
- name: Install rust
run: |
rustup update ${{ matrix.rust }} --no-self-update
rustup default ${{ matrix.rust }}
- run: cargo test --verbose
24 changes: 0 additions & 24 deletions .github/workflows/rust.yml

This file was deleted.

0 comments on commit 7aaad49

Please sign in to comment.