Skip to content

tiancaiamao is testing out GitHub Actions πŸš€ #80

tiancaiamao is testing out GitHub Actions πŸš€

tiancaiamao is testing out GitHub Actions πŸš€ #80

Workflow file for this run

name: GitHub Actions CI
run-name: ${{ github.actor }} is testing out GitHub Actions πŸš€
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "πŸŽ‰ The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "πŸ”Ž The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v4
- name: Build cora binary
run: make
- name: Install rlwrap
run: sudo apt-get install -y rlwrap
- name: Add custom binary to PATH
run: echo "$GITHUB_WORKSPACE" >> $GITHUB_PATH
- name: Verify env before run
run: |
which rlwrap
which cora
echo $PATH $PWD $GITHUB_WORKSPACE
- name: Run the test
run: make test
- name: Run bootstrap test
run: make bootstrap