Update README.md (#21) #21
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
name: Test all Platforms | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
page_build: | |
release: | |
types: | |
- created | |
jobs: | |
test_action: | |
name: Test Run Action | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set Timezone to +0 (No input) | |
uses: ./ | |
- name: Set Timezone to +0 (With input) | |
uses: ./ | |
with: | |
timezoneLinux: "UTC" | |
timezoneMacos: "GMT" | |
timezoneWindows: "UTC" | |
- name: Set Timezone to +8 (With input) | |
uses: ./ | |
with: | |
timezoneLinux: "Asia/Singapore" | |
timezoneMacos: "Asia/Singapore" | |
timezoneWindows: "Singapore Standard Time" |