Skip to content

Commit

Permalink
Add names to CI jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Aug 31, 2022
1 parent 4ed54ce commit 783ec2e
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,24 +37,31 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-latest
- name: Linux x86_64 stable
os: ubuntu-latest
rust: stable
other: i686-unknown-linux-gnu
- os: ubuntu-latest
- name: Linux x86_64 beta
os: ubuntu-latest
rust: beta
other: i686-unknown-linux-gnu
- os: ubuntu-latest
- name: Linux x86_64 nightly
os: ubuntu-latest
rust: nightly
other: i686-unknown-linux-gnu
- os: macos-latest
- name: macOS x86_64 stable
os: macos-latest
rust: stable
other: x86_64-apple-ios
- os: windows-latest
- name: Windows x86_64 MSVC stable
os: windows-latest
rust: stable-msvc
other: i686-pc-windows-msvc
- os: windows-latest
- name: Windows x86_64 gnu nightly
os: windows-latest
rust: nightly-gnu
other: i686-pc-windows-gnu
name: Tests ${{ matrix.name }}
steps:
- uses: actions/checkout@v3
- name: Dump Environment
Expand Down

0 comments on commit 783ec2e

Please sign in to comment.