Add CI for latest Moby #5
Workflow file for this run
This file contains 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: Tests against latest Docker engine | |
on: | |
pull_request: | |
schedule: | |
# nightly build, at 23:59 CEST | |
- cron: '59 23 * * *' | |
jobs: | |
test_latest_moby: | |
name: "Core tests using latest Docker-CE" | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-build | |
- name: Install Latest Docker | |
run: curl https://get.docker.com | CHANNEL=test sh | |
- name: Check Docker version | |
run: docker version | |
- name: Build with Gradle | |
run: ./gradlew cleanTest --no-daemon --continue --scan -Dscan.tag.DOCKER_LATEST testcontainers:test | |
# - name: Notify to Slack on failures | |
# id: slack | |
# uses: slackapi/[email protected] | |
# with: | |
# # This data can be any valid JSON from a previous step in the GitHub Action | |
# payload: | | |
# { | |
# "tc_project": "testcontainers-java", | |
# "tc_github_action_url": "https://github.com/testcontainers/testcontainers-java/actions/runs/${{ env.GITHUB_RUN_ID }}/job/${{ env.GITHUB_RUN_NUMBER }}", | |
# "tc_github_action_status": "FAILED", | |
# "tc_slack_channel_id": "${{ secrets.SLACK_DOCKER_LATEST_CHANNEL_ID }}" | |
# } | |
# env: | |
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_DOCKER_LATEST_WEBHOOK }} |