Skip to content
This repository was archived by the owner on Jan 17, 2025. It is now read-only.

move action to workflow folder #100

Merged
merged 1 commit into from
Nov 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# This is a basic workflow to help you get started with Actions

name: Swift Runtimes Build and Test

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

workflow_dispatch:

jobs:

Test:

runs-on: ubuntu-latest

steps:
- name: Check out the repo
uses: actions/checkout@v2

- name: update ca certificates
run: sudo update-ca-certificates --fresh

- name: Setup
run: ./tools/travis/setup.sh

- name: Fix Old ansible
run: python -m pip install --user ansible==2.8.18

- name: Build
run: ./tools/travis/build.sh

- name: Deploy
run: ./tools/travis/deploy.sh

- name: Test
run: ./tools/travis/test.sh