Skip to content

Commit

Permalink
lint on windows and linux
Browse files Browse the repository at this point in the history
  • Loading branch information
mxve committed Sep 21, 2024
1 parent a5508e9 commit db15f29
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,15 @@ name: lint

jobs:
check:
strategy:
matrix:
include:
- target: i686-pc-windows-msvc
os: windows-latest
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
name: Check
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand All @@ -22,8 +29,15 @@ jobs:
command: check

test:
strategy:
matrix:
include:
- target: i686-pc-windows-msvc
os: windows-latest
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
name: Test Suite
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand All @@ -40,8 +54,15 @@ jobs:
command: test

lints:
strategy:
matrix:
include:
- target: i686-pc-windows-msvc
os: windows-latest
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
name: Lints
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand Down

0 comments on commit db15f29

Please sign in to comment.