-
Notifications
You must be signed in to change notification settings - Fork 13
41 lines (38 loc) · 1.16 KB
/
Copy pathtest-executables.yml
File metadata and controls
41 lines (38 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Test executables
on:
release:
types: [published]
schedule:
- cron: '0 0 * * 0'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test-unix:
name: "Testing ${{ matrix.version }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ macos-26, macos-26-intel, ubuntu-24.04-arm, ubuntu-latest ]
version: [ '2.11', '2.10' ]
steps:
- uses: actions/checkout@v7
- name: Test on ${{ matrix.os }}
run: |
curl --fail -s https://get.simplelocalize.io/${{ matrix.version }}/install | bash
simplelocalize --version
test-windows:
name: "Testing ${{ matrix.version }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ windows-latest ]
version: [ '2.11', '2.10' ]
steps:
- uses: actions/checkout@v7
- name: Test on ${{ matrix.os }}
run: |
. { iwr -useb https://get.simplelocalize.io/${{ matrix.version }}/install-windows } | iex;
simplelocalize --version