Update README.md to make it clear RIE binary is meant to be used in linux env #47
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
name: Run Integration Tests | |
on: | |
pull_request: | |
branches: | |
- develop | |
- main | |
jobs: | |
go-tests: | |
runs-on: ubuntu-latest | |
environment: | |
name: integ-tests | |
steps: | |
- uses: actions/checkout@v4 | |
- name: run go tests | |
run: make tests-with-docker | |
integ-tests-x86: | |
runs-on: ubuntu-latest | |
environment: | |
name: integ-tests | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: run integration tests | |
run: make integ-tests-with-docker-x86-64 | |
integ-tests-arm64: | |
runs-on: ubuntu-latest | |
environment: | |
name: integ-tests | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: run integration tests | |
run: make integ-tests-with-docker-arm64 | |
integ-tests-old: | |
runs-on: ubuntu-latest | |
environment: | |
name: integ-tests | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: run integration tests | |
run: make integ-tests-with-docker-old |