forked from jadolg/rocketchat_API
-
Notifications
You must be signed in to change notification settings - Fork 0
26 lines (24 loc) · 728 Bytes
/
test.yml
File metadata and controls
26 lines (24 loc) · 728 Bytes
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
name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13', ]
rocket-chat-version: [ '7.4.3', '7.5.3', '7.6.4', '7.7.7', '7.8.3', '7.9.0' ]
steps:
- name: Checkout
uses: actions/checkout@v5.0.0
- name: Test
uses: ./.github/actions/test_rocketchat
with:
python-version: ${{ matrix.python-version }}
rocket-chat-version: ${{ matrix.rocket-chat-version }}
rocket-chat-license: ${{ secrets.ROCKETCHAT_LICENSE }}
codecov-token: ${{ secrets.CODECOV_TOKEN }}