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 0761fbf
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 24 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build

on:
- push
- pull_request

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
build: [stable, beta, nightly, macos]
include:
- build: stable
os: ubuntu-latest
rust: stable
- build: beta
os: ubuntu-latest
rust: beta
- build: nightly
os: ubuntu-latest
rust: nightly
- build: macos
os: macos-latest
rust: stable
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 0761fbf

Please sign in to comment.