diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f813627..225dbd1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -62,3 +62,14 @@ jobs: run: make macos-test - if: matrix.runs-on == 'ubuntu-latest' run: make test + test-main-branch: + runs-on: ubuntu-latest + strategy: + matrix: + icu_version: [74] + steps: + - uses: actions/checkout@v2 + - name: 'Test ICU `main`' + run: | + make DOCKER_TEST_ENV=rust_icu_testenv-current RUST_ICU_MAJOR_VERSION_NUMBER=${{matrix.icu_version}} docker-test-current + diff --git a/Makefile b/Makefile index 2b6623b..86ff374 100644 --- a/Makefile +++ b/Makefile @@ -75,7 +75,6 @@ docker-test: # Compiles and tests rust_icu code with the current head at ICU docker-test-current: - make -C build tag-current.stamp mkdir -p ${CARGO_TARGET_DIR} echo top_dir: ${TOP_DIR} echo pwd: $(shell pwd)