Bump the actions group with 1 update (#41) #57
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: CI | |
on: [push] | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
env: | |
CI: external | |
continue-on-error: true | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
ruby: [3.3] | |
steps: | |
# - run: ssh -V | |
# - run: | | |
# ssh-keygen -t ed25519 -f ~/.ssh/id_ed25519 -P "" | |
# - run: | | |
# cat ~/.ssh/id_ed25519.pub >> ~/.ssh/authorized_keys | |
# - run: | | |
# ssh-keyscan localhost >> ~/.ssh/known_hosts | |
# - run: | | |
# ssh -v localhost w | |
- uses: actions/checkout@v4 | |
# - uses: ruby/setup-ruby@v1 | |
# with: | |
# bundler-cache: true | |
# ruby-version: '${{ matrix.ruby }}' | |
# - run: ruby ci.rb | |
- uses: actions/upload-artifact@v4 | |
name: Upload artifact v4 test 1 | |
with: | |
name: workflows-${{ matrix.os }} | |
path: workflows | |
- uses: actions/upload-artifact@v4 | |
name: Upload artifact v4 test 2 same name | |
with: | |
name: workflows-${{ matrix.os }} | |
path: bin |