Update main.yml #715
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 | |
on: | |
# issues: | |
# types: [opened, edited] | |
# issue_comment: | |
# types: created #, edited] | |
# pull_request: | |
# types: opened | |
push: | |
# branches: wiki | |
paths-ignore: | |
- '.github/*' | |
- '.github/*_TEMPLATE/**' | |
- '*.yml' | |
workflow_dispatch: | |
# issues: | |
# types: [opened, reopened, edited] | |
# issue_comment: | |
# types: [created, edited] | |
# pull_request: | |
#defaults: | |
# run: | |
# shell: bash | |
jobs: | |
test: | |
# name: ${{ matrix.runs-on }} | |
runs-on: ubuntu-latest #${{ matrix.runs-on }} | |
# container: ${{ matrix.container }} | |
# strategy: | |
# fail-fast: false | |
# matrix: | |
# test: [a, b] | |
# container: [ubuntu:devel, ''] | |
# runs-on: [ubuntu-latest, windows-latest, macos-latest] #[windows-latest, ubuntu-18.04, ubuntu-latest, macos-latest] | |
# env: | |
# pull_request_title: ${{ github.event.pull_request.title }} | |
# issue_title: ${{ github.event.issue.title }} | |
# POWERSHELL_TELEMETRY_OPTOUT: 1 | |
steps: | |
- name: run | |
run: printf "${{ github.ref }}" | |
# - uses: actions/checkout@main | |
# with: | |
# repository: ${{ github.repository }}.wiki | |
# - name: Update wiki | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# run: | | |
# git remote add remote https://github.com/${{ github.repository }}.git | |
# git fetch remote wiki | |
# git reset --hard remote/wiki | |
# git push -f | |
# - name: test | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# test: ${{ matrix.test[0] }} | |
# run: | | |
# echo hi |