-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
28 additions
and
14 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,9 @@ on: | |
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
pull_request_target: | ||
types: | ||
- opened | ||
|
@@ -17,26 +20,37 @@ jobs: | |
matrix: | ||
erlang: | ||
- 24.2 | ||
- 25 | ||
- 26 | ||
- 27 | ||
# - 25 | ||
# - 26 | ||
# - 27 | ||
|
||
runs-on: ubuntu-latest | ||
|
||
container: | ||
image: erlang:${{ matrix.erlang }} | ||
|
||
steps: | ||
- name: Setup SSH | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Run tests | ||
run: | | ||
set -ex | ||
mkdir -p -m 700 ~/.ssh | ||
ssh-keygen -N '' -f ~/.ssh/id_rsa | ||
ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts | ||
- uses: actions/checkout@v3 | ||
mkdir -p -m 700 /root/.ssh | ||
- name: Run tests | ||
run: make test | ||
env: | ||
DEBUG: 1 | ||
echo "Host *" > /root/.ssh/config | ||
echo " IdentityFile /root/.ssh/id_rsa" >> /root/.ssh/config | ||
chmod 600 /root/.ssh/config | ||
ssh-keygen -t rsa -N '' -f /root/.ssh/id_rsa | ||
eval `ssh-agent -s` | ||
ssh-add /root/.ssh/id_rsa | ||
ssh-keyscan -t rsa github.com >> /root/.ssh/known_hosts | ||
chmod 600 /root/.ssh/known_hosts | ||
ssh -vT [email protected] | ||
export DEBUG=1 | ||
make test |
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