Skip to content

Commit

Permalink
Change the screwdriver to GitHub Actions. (#10)
Browse files Browse the repository at this point in the history
The issue has been solved.
  • Loading branch information
Doom9527 authored Apr 11, 2024
1 parent 57e7a98 commit 653da99
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 82 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Elide CI/CD

on:
pull_request:
branches:
- '*'
types: [opened, synchronize]
push:
branches:
- master

jobs:
tests:
name: Unit & Integration Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
- name: Run unit & integration tests
run: mvn -B clean verify

82 changes: 0 additions & 82 deletions screwdriver.yaml

This file was deleted.

0 comments on commit 653da99

Please sign in to comment.