Skip to content

Commit

Permalink
adding windows test
Browse files Browse the repository at this point in the history
  • Loading branch information
Detlef Groth committed Aug 29, 2024
1 parent bd7143e commit 4053db0
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,32 @@ on:

jobs:
linux:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
name: Build on ${{ matrix.distro }} ${{ matrix.arch }}

steps:
- uses: actions/checkout@v3
- name: check uname Ubuntu
- uses: actions/checkout@v4
- name: check cygwin install
run: |
uname -a
uname -n
uname -s
macos:
runs-on: macos-11
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: check uname mac-os-11
- uses: actions/checkout@v4
- name: check uname mac-os-14
run: |
uname -a
uname -n
uname -s
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: check chck the path
shell: cmd
run: |
echo %PATH%

0 comments on commit 4053db0

Please sign in to comment.