feat: add tests #16
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: 'Continuous Integration' | |
on: | |
push: | |
branches: ['master'] | |
pull_request: | |
branches: ['master'] | |
workflow_call: | |
jobs: | |
push: | |
name: 'Run tests' | |
runs-on: 'ubuntu-latest' | |
permissions: | |
contents: 'read' | |
steps: | |
- name: 'Checkout code' | |
uses: 'actions/checkout@v4' | |
- name: 'Log in to the Container registry' | |
uses: 'docker/login-action@v3' | |
with: | |
username: '${{ secrets.REGISTRY_USERNAME }}' | |
password: '${{ secrets.REGISTRY_PASSWORD }}' | |
- name: 'Set up Docker Buildx' | |
uses: 'docker/setup-buildx-action@v3' | |
- name: 'Build' | |
uses: 'docker/build-push-action@v5' | |
with: | |
pull: true | |
push: false | |
tags: 'jeanberu/mailcatcher:latest' | |
platforms: 'linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8' | |
- name: 'Start mailcatcher' | |
run: 'docker run -d jeanberu/mailcatcher:latest' | |
- name: 'Install test dependencies' | |
run: 'gem install rspec net-smtp net-http' | |
- name: 'Run tests' | |
run: 'rspec spec/*' |