Skip to content

Commit

Permalink
Merge pull request #113 from rust-lang-nursery/ci/gh-actions
Browse files Browse the repository at this point in the history
Replace Azure Pipelines with GitHub Actions
  • Loading branch information
KodrAus committed Jun 5, 2022
2 parents 337d417 + 5c78ee4 commit 91248c1
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 41 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/rust.yml
@@ -0,0 +1,33 @@
name: Continuous integration

on:
pull_request:
push:
branches:
- master

jobs:
os_tests:
name: "Tests / OS: ${{ matrix.os }} - ${{ matrix.channel }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
channel:
- stable
- beta
- nightly
- 1.23.0
os:
- macos-10.15
- windows-2019
- ubuntu-20.04

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Update rust
run: rustup update ${{ matrix.channel }} --no-self-update

- name: Tests
run: cargo +${{ matrix.channel }} test --all
41 changes: 0 additions & 41 deletions azure-pipelines.yml

This file was deleted.

0 comments on commit 91248c1

Please sign in to comment.