Update FullCalendar Resource #59
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
# This is a basic workflow to help you get started with Actions | |
name: Salesforce Test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: ant setup | |
run: ant -noinput -buildfile build.xml setup | |
- name: Build with Ant | |
env: | |
SALESFORCE_URL: ${{ secrets.SALESFORCE_URL }} | |
SALESFORCE_USERNAME: ${{ secrets.SALESFORCE_USERNAME }} | |
SALESFORCE_PASSWORD: ${{ secrets.SALESFORCE_PASSWORD }} | |
SALESFORCE_PACKAGE: ${{ secrets.SALESFORCE_PACKAGE }} | |
run: ant -noinput -buildfile build.xml test |