Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Turn on basic testing #23

Closed
wants to merge 13 commits into from
Closed
36 changes: 36 additions & 0 deletions .github/workflows/e2etest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: e2etest

on:
pull_request:
branches:
- main

schedule:
# * is a special character in YAML so you have to quote this string
- cron: '5 4 * * *'

jobs:
pull-and-run-tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]

steps:
- name: Setup Docker on macOS using Colima, Lima-VM, and Homebrew.
uses: douglascamata/setup-docker-macos-action@v1-alpha # Uses an action in the root directory
id: docker-install
- name: Verify install
id: docker-verify
shell: bash
run: |
docker --version
docker compose version
colima --version
mkdir -p /var/folders
- name: Download and launch
id: curl-download-and-launch
shell: bash
timeout-minutes: 30
run: |
curl https://raw.githubusercontent.com/everest/everest-demo/main/demo-iso15118-2-ac-plus-ocpp201.sh | bash
Loading