-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (37 loc) · 1.02 KB
/
ci.yml
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
42
43
44
45
46
name: CI
on:
push:
release:
types: [published]
jobs:
build:
strategy:
matrix:
# TODO: test on windows.
os: [ ubuntu-latest, macos-latest ]
# The versions should contain (at least) the lowest requirement
# and a version that is more up to date.
toit-version: [ v2.0.0-alpha.144, latest ]
include:
- toit-version: v2.0.0-alpha.144
version-name: old
- toit-version: latest
version-name: new
name: CI - ${{ matrix.os }} - ${{ matrix.version-name }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: toitlang/action-setup@v1
with:
toit-version: ${{ matrix.toit-version }}
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
architecture: x64
- name: Fetch Python dependencies
run: |
pip install -r tests/requirements.txt
- name: Test
run: |
make test