Skip to content

Commit 85bb80d

Browse files
committed
different OS were added in build step
1 parent e01a239 commit 85bb80d

1 file changed

Lines changed: 8 additions & 22 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,13 @@ env:
1313
CARGO_TERM_COLOR: always
1414

1515
jobs:
16-
build:
17-
18-
runs-on: ubuntu-latest
19-
20-
steps:
16+
strategy:
17+
matrix:
18+
os: [ ubuntu-latest, macos-13, macos-14, windows-latest ]
19+
runs-on: ${{ matrix.os }}
20+
21+
steps:
22+
- name: Build
2123
- uses: actions/checkout@v4
2224
- name: Build
23-
run: cargo build --verbose
24-
25-
release:
26-
needs: build
27-
runs-on: ubuntu-latest
28-
env:
29-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # provided automatically by GitHub
30-
steps:
31-
- uses: actions/checkout@v4
32-
- uses: actions/download-artifact@v4
33-
with: { name: dist }
34-
- id: create_release
35-
uses: elgohr/Github-Release-Action@v5
36-
with:
37-
title: Dev Build ${{ github.sha }}
38-
tag: dev-${{ github.sha }}
39-
prerelease: true
25+
run: cargo build --verbose

0 commit comments

Comments
 (0)